`

android checkbox 定制(修改checkbox 的图片)

阅读更多

转载:http://www.bangchui.org/read.php?tid=10861

1. xml中通过android:button="@drawable/check_box" 指定图片 

 

 

 <CheckBox android:text="CheckBox" android:id="@+id/checkBox1"
        android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:button="@drawable/check_box"
     >


2. check_box定义在xml中 

 

<?xml version="1.0" encoding="utf-8"?>
<!-- This is the rating bar drawable that is used to a show a filled star. -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
 
     <item android:state_checked="false"
          android:state_enabled="true"
          android:drawable="@drawable/checkbox_off" />
    <item android:state_checked="true"
          android:state_enabled="true"
          android:drawable="@drawable/checkbox_on" />
 
</selector>
  3. 修改前后对比 
  
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics