Android更改浮动操作按钮颜色

数小时试图改变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知道如何添加波纹效果也很高兴,也无法理解。


FFIVE
浏览 705回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java
Android