checkbox style

String.xml

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

Drawable下:

checkbox_style.xml

<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
	<item android:state_checked="true" android:state_pressed="true"
		android:drawable="@drawable/checkbox_focused" />
	<item android:state_checked="false" android:state_pressed="true"
		android:drawable="@drawable/checkbox_normal" />
	<item android:state_checked="false" android:drawable="@drawable/checkbox_normal" />
	<item android:state_checked="true" android:drawable="@drawable/checkbox_focused" />
</selector>

 style="@style/checkbox_style"

你可能感兴趣的:(checkbox)