1. 程式人生 > >CheckBox 單選按鈕自定義樣式

CheckBox 單選按鈕自定義樣式

(1)在drawable資料夾下建立xml檔案,檔名自定義

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/weixuanzhong2" android:state_checked="true"/> //選中後的選項,其餘兩個為未選中和預設的
    <item android:drawable="@drawable/weixuanzhong" android:state_checked="false"/> 
    <item android:drawable="@drawable/weixuanzhong"/>
</selector>
(2)在style檔案裡面加入如下:
<style name="CustomCheckboxTheme" parent="@android:style/Widget.CompoundButton.CheckBox">
        <item name="android:button">@drawable/checkbox_style</item>
    </style>
(3)在佈局檔案引用即可:
style="@style/CustomCheckboxTheme"