背景:

android中缺省的checkbox,有时显得较小,而且经常会与界面设计风格不一致,因此通过定制checkbox可以设计成自已想要的风格。


方法:

一. 首先我们要确定checkbox的checked与unchecked两种状态。用图片表示:

二. 编写custom_checkbox_design.xml

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

<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item android:state_checked="true" android:drawable="@drawable/checked" />
<item android:state_checked="false" android:drawable="@drawable/unchecked" />

</selector>

三.调用

android:button="@drawable/custom_checkbox_design"