Android 自定义CheckBox样式

1.首先在drawable文件夹中添加drawable文件checkbox_style.xml。

 <selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:drawable="@drawable/sel_check"
android:state_checked="true"/>
<item
android:drawable="@drawable/sel_nor"
android:state_checked="false"/>
<item
android:drawable="@drawable/sel_nor"/> </selector>

2.在values文件夹下的styles.xml文件中添加CustomCheckboxTheme样式。

  <!-- CustomCheckBox theme -->
<style name="CustomCheckBoxTheme" parent="@android:style/Widget.CompoundButton.CheckBox">
<item name="android:button">@drawable/checkbox_style</item>
</style>

3.在布局文件中使用CustomCheckBoxTheme样式。

 <CheckBox
android:id="@+id/tv_upper"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
style="@style/CustomCheckBoxTheme" />

使用到的图片资源

Android 自定义CheckBox样式sel_check.png

Android 自定义CheckBox样式sel_nor.png

上一篇:解决android studiogradle 错误 找不到程序包 符号


下一篇:lvs负载均衡的搭建