Android 复选框白边

Android Checkbox White Border

如何将复选框更改为白色边框?我将复选框添加到深色背景中,如您所见,它几乎看不见。

您需要为选中状态和非选中状态创建 2 个不同的可绘制对象。示例-

checkbox_selector.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/white_color_box_with_tick" />
    <item android:state_checked="false" android:drawable="@drawable/white_color_box_without_tick" />
</selector>

并按照以下方式设置这个drawable-

<CheckBox
    android:text="Custom CheckBox"
    android:button="@drawable/checkbox_selector"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>