背景色の変更
backgroundTint
を使う。
背景色を変更したら縁に変な線ができた
app:borderWidth
を 0dpにする
サンプル
xml: title=activity_main.xml(抜粋)1<com.google.android.material.floatingactionbutton.FloatingActionButton 2 android:id="@+id/fab" 3 android:layout_width="wrap_content" 4 android:layout_height="wrap_content" 5 android:layout_gravity="end|bottom" 6 android:layout_margin="16dp" 7 android:background="@color/colorPrimary" 8 android:backgroundTint="@color/colorPrimary" 9 android:contentDescription="@string/fabDescription" 10 android:src="@drawable/ic_create_black_18dp" 11 app:borderWidth="0dp" /> 12 13
/以上
よかったらシェアしてください!