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" />
- 끝 -
'Android Study' 카테고리의 다른 글
Flexbox + Recyclerview (0) | 2023.08.31 |
---|---|
GlideApp 사용시 웹상에 나와있는 대부분 코드가 안될때 시도 방법 (0) | 2023.08.30 |
Android WebView 연동시키기 step-1 (0) | 2023.08.28 |
CloudFireStore 읽고 , 실시간 데이터 대기 (0) | 2023.08.27 |
TextView 문자열, 클래스에서 원하는 부분만 스타일 변경하여 적용시키기(Feat. Kotlin) (0) | 2023.08.17 |