Android 自定义CheckBox 样式

阅读更多

自定义Button样式相同,新建Android XML文件,类型选Drawable,根结点选selector,在这定义具体的样式。

1
2
3
4
5
6
7
8
9
 version="1.0" encoding="UTF-8"?>
 xmlns:android="http://schemas.android.com/apk/res/android">
	 android:state_checked="true" android:state_pressed="true"
		android:drawable="@drawable/focused" />
	 android:state_checked="false" android:state_pressed="true"
		android:drawable="@drawable/normal" />
	 android:state_checked="false" android:drawable="@drawable/normal" />
	 android:state_checked="true" android:drawable="@drawable/focused" />
>


state_checked 选中状态 state_pressed按下状态
即分别设置checkbox选中和没选中时,按下和没按下时显示的图片.
应用到Checkbox与Button不同,并不是设置Background属性,而是设置style属性,所以我们要写一个style。
在strings.xml写一个style,

1
2
3
 name="MyCheckBox" parent="@android:style/Widget.CompoundButton.CheckBox">
 name="android:button">@drawable/checkbox>
>

应用到Checkbox:

1
2
3
4
	 android:layout_width="wrap_content" 
	android:layout_height="wrap_content"
	style="@style/MyCheckBox"
	/>

你可能感兴趣的:(Android 自定义CheckBox 样式)