标签: android
我检查了api并为src background设置了FAB或前景,但始终显示与下图相同。我想替换默认的红色按钮。
src background
FAB
答案 0 :(得分:0)
您可以通过以下方式以编程方式更改它:
fab.setImageResource(R.drawable.your_drawable);
或者您可以在xml中执行此操作
android:src="@drawable/icon" // change your background icon app:backgroundTint="@color/icons" // change your background color