当前位置: 代码迷 >> Android >> android checkbox 定做(修改checkbox 的图片)
  详细解决方案

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

热度:73   发布时间:2016-05-01 20:49:33.0
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. 修改前后对比?
??
  相关解决方案