본문 바로가기

android

[j android] floatingActionButton src 가운데 정렬

728x90
반응형

floatingActionButton 사이즈를 변경하고 나니 src가 정렬이 이상하게 된 적있을 것이다.

fabCustomSize를 Button사이즈와 동일하게 지정해주면 가운데 정렬이 된다.

 

 <com.google.android.material.floatingactionbutton.FloatingActionButton
        android:id="@+id/floatingActionButton"
        android:layout_width="80dp"
        android:layout_height="80dp"
        app:fabCustomSize="80dp"
        android:layout_marginEnd="16dp"
        android:layout_marginBottom="16dp"
        android:clickable="true"
        android:focusable="true"
        app:backgroundTint="#FF9800"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:srcCompat="@drawable/ic_add_black_24dp" />
728x90
반응형