我想像这样
制作复选框我如何自己实施?
答案 0 :(得分:2)
创建一个选择器xml文件,例如:你必须剪切这个图像并保存为yellow_show名称和另一个图像,你必须只剪切这个框的正方形而没有复选标记并将该图像保存为yellow_hide ..
<?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/yellow_hide" />
<item android:state_checked="false" android:drawable="@drawable/yellow_show" />
</selector>
将此xml文件保存在res \ drawables \文件夹中。然后在布局文件中将它应用到您的checkBox,如下所示:
<CheckBox
android:text="Custom CheckBox"
android:button="@drawable/checkbox_selector"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>