FloatingActionButton의 색상을 변경하고 싶다!

 

app:backgroundTint : 버튼 색상

app:tint : 버튼 안의 아이콘 색상

app:rippleColor : 버튼을 눌렀을 때 퍼지는 이펙트 색상

 

<com.google.android.material.floatingactionbutton.FloatingActionButton
    android:id="@+id/floating_action_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_margin="16dp"
    android:contentDescription="@string/fab_content_desc"
    android:src="@drawable/ic_baseline_add_24"
    app:rippleColor="@color/purple_200"
    app:tint="@color/white"
    app:backgroundTint="@color/purple_500" />

 

+ Recent posts