更改Android Checkbox的已选中和未选中图标

更改Android Checkbox的已选中和未选中图标,第1张

更改Android Checkbox的已选中和未选中图标

混合种类:

在您的布局文件中设置它:

 <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 / checkbox如下所示:

<?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>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5478011.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存