วิธีแก้ปัญหาของ AkashG ไม่ได้ผลสำหรับฉัน เมื่อฉันตั้งค่า check.xml เป็นพื้นหลังมันเป็นเพียงการแบ่งชั้นในแนวตั้ง ในการแก้ปัญหานี้คุณควรตั้งค่าคุณสมบัติ check.xml เป็น "android: button":
<ToggleButton
android:id="@+id/toggle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/check" //check.xml
android:background="@null"/>
check.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- When selected, use grey -->
<item android:drawable="@drawable/selected_image"
android:state_checked="true" />
<!-- When not selected, use white-->
<item android:drawable="@drawable/unselected_image"
android:state_checked="false"/>
</selector>