[Android实例] 更改CheckBox的样式

首先在styles.xml添加如下的自定义样式:

  1.         <style name="mycheckbox" parent="@android:style/Widget.CompoundButton.CheckBox">
  2.         <item name="android:button">@drawable/my_checkbox</item>
  3.         </style>
复制代码

my_checkbox.xml的内容为:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">
  3.         <item android:state_checked="true" android:drawable="@drawable/checkbox_pressed" />                                                                                        
  4.     <item android:state_checked="false" android:drawable="@drawable/checkbox" />
  5.      <item android:drawable="@drawable/checkbox" />                                                                                                
  6. </selector>
复制代码

使用自定义样式的代码段:

  1.                 <CheckBox
  2.                                 android:id="@+id/checked" 
  3.                                 android:layout_alignParentRight="true"
  4.                                 android:layout_marginRight="10dip"
  5.                                 android:layout_centerVertical="true"
  6.                                 android:layout_width="40dip" 
  7.                                 android:layout_height="wrap_content"
  8.                                 android:checked="false"
  9.                                 style="@style/mycheckbox" 
  10.                                 />
复制代码

添加两张图片checkbox_pressed.png、checkbox.png

http://www.eoeandroid.com/forum.php?mod=viewthread&tid=148630

原文地址:https://www.cnblogs.com/cmblogs/p/4389169.html