<CheckBox
android:id="@+id/cb_collect"
style="@style/CustomAnimationCheckboxTheme"
android:layout_width="42dp"
android:layout_height="38dp"
android:paddingTop="12dp"
android:scaleType="center" />
<!-- checkbox样式 -->
<style name="CustomAnimationCheckboxTheme" parent="@android:style/Widget.CompoundButton.CheckBox">
<item name="android:button">@null</item>
<item name="android:drawableTop">@drawable/checkbox_animation_style</item>
</style>
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:drawable="@drawable/ding_btn_home" android:state_checked="true"/>
<item android:drawable="@drawable/ding_btn_normal_home" android:state_checked="false"/>
<item android:drawable="@drawable/ding_btn_normal_home"/>
</selector>