把CheckBox的方块换成图片或其他

先在drawable下创建一个selector 选中为true 否则为false


< selector xmlns:android="http://schemas.android.com/apk/res/android">
    < item
        android:drawable="@drawable/ic_check_circle_black_24dp"
        android:state_checked="true"/>
    < item
        android:drawable="@drawable/ic_panorama_fish_eye_black_24dp"
        android:state_checked="false"/>

< /selector>

在style里声明


最后在布局中用


你可能感兴趣的:(把CheckBox的方块换成图片或其他)