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. NPM 和webpack 的基础使用
  2. 【阿里云镜像】使用阿里巴巴DNS镜像源——DNS配置教程
  3. AutoCompleteTextView的基本使用
  4. Android(安卓)应用启动时去掉应用图标
  5. Android(安卓)JNI打印信息
  6. AutoCompleteTextView的基本使用
  7. Android中xml文件读写
  8. android中的Inflater
  9. Android中Manifest.xml配置文件

随机推荐

  1. Android GPS 开发
  2. android防止EditText自动弹出软键盘
  3. android EditView不换行的原因
  4. android dumpsys
  5. 设置控件不可点击
  6. Android工作笔记:Android路径大全
  7. Android常用控件
  8. 热门资讯 | 蓝鸥Android开发培训再现开发
  9. 样式和主题-style&them
  10. Android7.0中文文档(API)-- Toast