Android Study

Button 에 rippple efect 적용하기

85chong 2023. 8. 29. 09:51
728x90
반응형
SMALL

- 준비물 -
1. ripple efect file
2. 적용시킬 button (xml 적용 , 코드 적용)



1. res > drawable > ripple_effect.xml 파일 생성해준다.

<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="?android:attr/colorControlHighlight">
    <item android:id="@android:id/mask">
        <shape android:shape="rectangle">
            <solid android:color="#FFFFFFFF" />
        </shape>
    </item>
</ripple>

 

 


2. (xml 적용) 적용할 button 에 background 로 적용시켜준다.

<Button
    android:id="@+id/my_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Click Me"
    android:background="@drawable/ripple_effect" />

 

 

- 끝 -