安卓更改浮动操作按钮颜色
我一直在尝试更改材质的浮动操作按钮颜色,但没有成功。
<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")));
但上述方法均无效。我也尝试了建议的重复问题中的解决方案,但没有一个有效;按钮保持绿色,也变成了一个正方形。
P.S.知道如何添加涟漪效应也很好,也无法理解。