Android UI

RadioButton theme 설정으로 pressed 색깔 변경

오마로 2017. 3. 14. 17:23
반응형


앱 설정에서 다양한 RadioButton을 사용한다.

RadioButton을 아래와 같이 처리해서, 좀 더 UI가 이쁘게 처리 하고자 한다.


This one is tested on API 19



해당 layout xml에서 아래와 같이 설정 

<RadioButton
android:id="@+id/rb_preview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:theme="@style/CustomRadioButton"/>


style.xml 에서 아래와 같이 설정

<style name="CustomRadioButton" parent="Theme.AppCompat.Light">
<item name="colorAccent">@color/colorPrimary</item>
<item name="colorControlNormal">@color/gray_light</item>
</style>


이렇게 보면 쉽게 적용이 되는데, 모르면 정말 답이 없다 ^^;




반응형

'Android UI' 카테고리의 다른 글

Waiting Dialog UI 및 활용  (0) 2017.10.26