数小时试图改变Material的Floating Action Button颜色,但没有成功。
<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知道如何添加波纹效果也很高兴,也无法理解。