首先在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:andro>
  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: 
  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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-30
  • 2022-01-02
猜你喜欢
  • 2022-12-23
  • 2021-11-12
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
  • 2021-12-29
相关资源
相似解决方案