1.首先在drawable文件夹中添加drawable文件checkbox_style.xml。
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:drawable="@drawable/sel_check"
android:state_checked="true"/>
<item
android:drawable="@drawable/sel_nor"
android:state_checked="false"/>
<item
android:drawable="@drawable/sel_nor"/> </selector>
2.在values文件夹下的styles.xml文件中添加CustomCheckboxTheme样式。
<!-- CustomCheckBox theme -->
<style name="CustomCheckBoxTheme" parent="@android:style/Widget.CompoundButton.CheckBox">
<item name="android:button">@drawable/checkbox_style</item>
</style>
3.在布局文件中使用CustomCheckBoxTheme样式。
<CheckBox
android:id="@+id/tv_upper"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
style="@style/CustomCheckBoxTheme" />
使用到的图片资源
sel_check.png
sel_nor.png