首页 > 代码库 > Android中自定义Checkbox
Android中自定义Checkbox
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。