반응형
drawable 폴더에 xml 생성 ( layout_button_selector.xml )
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/layout_press" android:state_pressed="true"></item>
<item android:drawable="@color/layout_unpress" android:state_focused="true"></item>
<item android:drawable="@color/layout_unpress" ></item>
</selector>
반응형
*** 적용 ***
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/layout_button_selector">
반응형
'Mobile > Android' 카테고리의 다른 글
[ Android ] AlertDialog 다이얼로그 (0) | 2023.07.24 |
---|---|
[ Android ] 버튼 이미지(변경 + hover 효과) (0) | 2023.07.23 |
[ Android ] Custom Button 커스텀 버튼 색 변경 (0) | 2023.07.22 |
[ Android ] 손쉽게 Custom Toast 만들기 (0) | 2023.07.22 |
[ Android ] Custom Progressbar 커스텀 프로그래스바 만들기 (0) | 2023.07.22 |