お首が長いのよお首が長いのよ

チラシの裏よりお届けするソフトウェアエンジニアとして成長したい人のためのブログ

2020-06-18

FABの背景色と余計な線を消す

背景色の変更

backgroundTintを使う。

背景色を変更したら縁に変な線ができた

example1

app:borderWidth を 0dpにする

example2

サンプル

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

/以上

よかったらシェアしてください!