버튼의 enable, disable에 따라 모양을 바꾸고 싶을 때 쓸 수 있다.
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:Android="http://schemas.Android.com/apk/res/Android">
<item Android:state_enabled="true">
<shape Android:shape="rectangle">
<solid Android:color="@color/yourEnabledColor" />
</shape>
</item>
<item Android:state_enabled="false">
<shape Android:shape="rectangle">
<solid Android:color="@color/yourDisabledColor" />
</shape>
</item>
</selector>
여기서 참조함
'프로그래밍 일반 > 안드로이드 심화' 카테고리의 다른 글
[안드로이드] DataPicker사용하기 (0) | 2020.06.10 |
---|---|
[안드로이드] Intent에 화면 전환 효과 주기 (0) | 2020.06.10 |
[안드로이드] 정규식관련 참조 블로그 (0) | 2020.06.10 |
[안드로이드] 다이얼로그 창 띄우기 예제 (0) | 2020.06.10 |
[안드로이드] VolleyRequest에서 GET값 전달이 안 될 때 (0) | 2020.06.10 |