0

我想做这样的复选框在此处输入图像描述

我怎样才能自己实现它?

4

1 回答 1

2

创建一个选择器 xml 文件,例如:您必须剪切此图像并另存为黄色显示名称和另一个图像,您必须仅剪切此框的正方形而不选中标记并将该图像另存为 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
    android:text="Custom CheckBox"
    android:button="@drawable/checkbox_selector"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>
于 2013-01-19T10:55:11.500 回答