android开发教程之自定义控件checkbox的样式示例

主界面xml文件

复制代码 代码如下:

    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
            android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:button="@drawable/check_selector"
        android:checked="true" />

/res/drawable-hdpi/check_selector.xml

复制代码 代码如下:



   
   

P.S:重点: android:button="@drawable/check_selector"

check_selector.xml中的checkok为CheckBox选中状态的图片,checkno为CheckBox未选中状态的图片.

你可能感兴趣的:(android开发教程之自定义控件checkbox的样式示例)