Study Record

간단한 ImageButton에 ripple 넣기 본문

안드로이드

간단한 ImageButton에 ripple 넣기

초코초코초코 2022. 4. 9. 23:32
728x90

 

android:background 속성에 "?attr/selectableItemBackground" 을 추가한다.

<ImageButton
    android:id="@+id/goHomeButton"
    android:layout_width="wrap_content"
    android:layout_height="0dp"
    android:background="?attr/selectableItemBackground"
    android:src="@drawable/ic_home"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    tools:ignore="ContentDescription" />
728x90