首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

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

2012-08-08 
android checkbox 定制(修改checkbox 的图片)转载:http://www.bangchui.org/read.php?tid108611. xml中通

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. 修改前后对比?
android checkbox 定做(修改checkbox 的图片)??

热点排行