自定义checkbox风格
Posted 岑忠满
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义checkbox风格相关的知识,希望对你有一定的参考价值。
2. 在values中创建styles.xml:
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="MyCheckBox" parent="@android:style/Widget.CompoundButton.CheckBox"> <item name="android:button">@drawable/checkbox_selector</item> <item name="android:paddingLeft">25.0dip</item> <item name="android:maxHeight">10.0dip</item> </style> </resources>
3. 在你的CheckBox中添加属性:
<CheckBox android:id="@+id/check" android:layout_width="20dp" android:layout_height="20dp" android:layout_marginLeft="5dp" style="@style/MyCheckBox" />
搞定!这样就把你的checkbox换成你设置的那两张图片了
以上是关于自定义checkbox风格的主要内容,如果未能解决你的问题,请参考以下文章