Android的CheckBox控件的点击效果布局文件

来源:互联网 发布:自定义 仅安装windows 编辑:程序博客网 时间:2024/06/05 04:26

个人笔记:

店家效果:


在res/drawable中新建checkstyle.xml,代码如下:

<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android" >    <!-- 选中时的图片 --><item android:state_checked="true" android:drawable="@drawable/checked"/><!-- 未选中时的图片 --><item android:state_focused="false" android:drawable="@drawable/uncheck"></item></selector>
引用布局文件在checkBox空间属性中添加属性:
android:button="@drawable/checkstyle"

以后还可以在java中设置CheckBox控件的点击效果

原创粉丝点击