更改 Android 复选框的选中和未选中图标
我想要一个自定义星号(我已经选中和取消选中了图标),而不是图标的复选标记。这可以通过属性来完成吗?或者我必须声明从复选框派生的自定义小部件?
我想要一个自定义星号(我已经选中和取消选中了图标),而不是图标的复选标记。这可以通过属性来完成吗?或者我必须声明从复选框派生的自定义小部件?
有点像混合:
在布局文件中设置它:-
<CheckBox android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="new checkbox"
android:background="@drawable/checkbox_background"
android:button="@drawable/checkbox" />
其中,@drawable/复选框将如下所示:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:state_focused="true"
android:drawable="@drawable/checkbox_on_background_focus_yellow" />
<item android:state_checked="false" android:state_focused="true"
android:drawable="@drawable/checkbox_off_background_focus_yellow" />
<item android:state_checked="false"
android:drawable="@drawable/checkbox_off_background" />
<item android:state_checked="true"
android:drawable="@drawable/checkbox_on_background" />
</selector>
这是为了让它工作android:button="@drawable/selector_checkbox"