Android Checkbox白色边框

时间:2015-03-23 21:38:55

标签: java android xml checkbox

如何更改复选框以使其具有白色边框?我将复选框添加到深色背景中,正如您所看到的,它几乎看不到。

enter image description here

1 个答案:

答案 0 :(得分:3)

你需要创建一个2个不同的drawable for checked state&未检查状态。示例 -

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"/>