android 自定义checkbox

1.首先在drawable文件夹中添加drawable文件checkbox_style.xml。

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/checkbox_pressed" android:state_checked="true"/>
    <item android:drawable="@drawable/checkbox_normal" android:state_checked="false"/>
    <item android:drawable="@drawable/checkbox_normal"/>

</selector>

 2.在values文件夹下的styles.xml文件中添加CustomCheckboxTheme样式。

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <style name="CustomCheckboxTheme" parent="@android:style/Widget.CompoundButton.CheckBox">
        <item name="android:button">@drawable/checkbox_style</item>
    </style>

</resources>

 3.在布局文件中使用CustomCheckboxTheme样式。

style="@style/CustomCheckboxTheme"

 

 转载: http://blog.csdn.net/zuolongsnail/article/details/7106586

猜你喜欢

转载自bgj.iteye.com/blog/2082869