chebox样式

来源:互联网 发布:华为上机考试题库java 编辑:程序博客网 时间:2024/06/05 21:34

添加2张chebox图片。

在res资源文件夹中新建drawable文件夹,在其下建立chaebox_style.xml文件

<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android" >    <item android:drawable="@drawable/checkbox_true" android:state_checked="true" /><span style="white-space:pre"></span>//选中状态    <item android:drawable="@drawable/checkbox_false" android:state_checked="false" />    //未选中状态    <item android:drawable="@drawable/checkbox_false" /><span style="white-space:pre"></span>//默认状态</selector>


在style文件中加入样式

<style name="CustomCheckboxTheme" parent="@android:style/Widget.CompoundButton.CheckBox">      <item name="android:button">@drawable/checkbox_style</item>  </style>  

在<chebox />属性中加入样式
style="@style/chackbox"


0 0