配置好的checkBox 拿来就用

来源:互联网 发布:资本主义灭亡 知乎 编辑:程序博客网 时间:2024/05/22 13:17

布局文件

<CheckBox            android:id="@+id/cb_agree"            style="@style/CustomCheckboxTheme"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_marginLeft="10dp"            android:text="@string/CheckBox_agree"            android:paddingLeft="6dp"            android:textColor="@color/black"            android:textSize="@dimen/tSize16" />

主题样式

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

状态选择器 默认点击的时候是屎黄的

<?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"/>    <item android:drawable="@drawable/checkbox_false" android:state_checked="false"/></selector>

背景图片下载

这里写图片描述
这里写图片描述

0 0
原创粉丝点击