先写style文件 方阵drawable下面
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:drawable="@drawable/checkbox_checked"
android:state_checked="true"/>
<item
android:drawable="@drawable/checkbox_unchecked"
android:state_checked="false"/>
</selector>
然后再value/style 下面增加style
<style name="MyCheckBox" parent="@android:style/Widget.CompoundButton.CheckBox">
<item name="android:button">@drawable/checkbox</item>
<item name="android:paddingLeft">25.0dip</item>
<item name="android:maxHeight">10.0dip</item>
</style>
最后在checkbox添加这个style就行
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/MyCheckBox"
/>
原文 http://blog.youkuaiyun.com/zuolongsnail/article/details/7106586