指定CheckBox的button属性
<CheckBox android:checked="false" android:clickable="false" android:button="@drawable/btn_check" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:layout_marginRight="14dp" android:id="@+id/cb_status"/>btn_check.xml
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_checked="false" android:drawable="@drawable/btn_check_off" /> <item android:state_checked="true" android:drawable="@drawable/btn_check_on" /> </selector>其中btn_check_off和btn_check_on分别为取消选中和选中时的展示的两个图片