码迷,mamicode.com
首页 > 移动开发 > 详细

Android中自定义Checkbox

时间:2014-12-10 22:28:52      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   io   ar   color   sp   on   

custom_checkbox.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/btn_unselect" android:state_checked="false"/>
    <item android:drawable="@drawable/btn_select" android:state_checked="true"/>

</selector>

styles.xml中

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

 

Checkbox:

   <CheckBox  
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content"  
        android:checked="true"
        android:text="全(不)选"
        android:layout_margin="10dip"
        android:paddingLeft="10dip"
        android:textSize="20sp"
        style="@style/custom_checkbox"
        android:textColor="@color/black"/> 

备注:

paddingLeft为左边的图标与右边的文字之间的距离

Android中自定义Checkbox

标签:android   style   blog   http   io   ar   color   sp   on   

原文地址:http://www.cnblogs.com/xiaoxian1369/p/4156385.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!