`
bogongjie
  • 浏览: 231543 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论

android 自定义checkbox

阅读更多

1.首先在drawable文件夹中添加drawable文件checkbox_style.xml。

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

    <item android:drawable="@drawable/checkbox_pressed" android:state_checked="true"/>
    <item android:drawable="@drawable/checkbox_normal" android:state_checked="false"/>
    <item android:drawable="@drawable/checkbox_normal"/>

</selector>

 2.在values文件夹下的styles.xml文件中添加CustomCheckboxTheme样式。

<?xml version="1.0" encoding="utf-8"?>
<resources>

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

</resources>

 3.在布局文件中使用CustomCheckboxTheme样式。

style="@style/CustomCheckboxTheme"

 

 转载: http://blog.csdn.net/zuolongsnail/article/details/7106586

  • 大小: 1.3 KB
  • 大小: 1.1 KB
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics