如何在 android 中制作自定义复选框?

How to make customized checkbox in android?

如何使复选框像android中的图像一样。谁能帮帮我?

首先:在你的res/drawable文件夹中,创建"custom_checkbox.xml"

<selector xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:drawable="@drawable/cbox" android:state_checked="false"/>
    <item android:drawable="@drawable/cbox_selected" android:state_checked="true"/>
    <item android:drawable="@drawable/cbox"/>    
</selector>

其次:在你的res/drawable-hdpi文件夹中,粘贴两个名为"cbox.png(which is unselected image of checkbox) and cbox_selected.png(which is selected Image of checkbox)"

的文件

第三:现在在你的复选框声明中

<CheckBox
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:button="@drawable/custom_checkbox" />