24
Androidのフローティングアクションボタンの色の変更
マテリアルのフローティングアクションボタンの色を変更しようとしていますが、成功しませんでした。 <android.support.design.widget.FloatingActionButton android:id="@+id/profile_edit_fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="end|bottom" android:layout_margin="16dp" android:clickable="true" android:src="@drawable/ic_mode_edit_white_24dp" /> 追加しようとしました: android:background="@color/mycolor" またはコード経由: FloatingActionButton fab = (FloatingActionButton) rootView.findViewById(R.id.profile_edit_fab); fab.setBackgroundColor(Color.parseColor("#mycolor")); または fab.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#mycolor"))); しかし、上記のどれもうまくいきませんでした。提案された重複質問の解決策も試しましたが、どれも機能しません。ボタンは緑色のままで、正方形にもなりました。 PS波及効果を追加する方法も知っておくとよいでしょう。それも理解できませんでした。