答案 0 :(得分:1)
使用如下。它是this answer
的编辑版本<Switch
android:id="@+id/th"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:textColor="#000000"
app:textOff="@string/switch_no"
app:textOn="@string/switch_yes"
app:thumb="@drawable/apptheme_switch_inner_holo_light"
app:track="@drawable/apptheme_switch_track_holo_light" />
在drawable文件夹中,创建一个xml文件my_btn_toggle.xml:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="false" android:drawable="@drawable/red" />
<item android:state_checked="true" android:drawable="@drawable/green"/>
</selector>
其中红色和绿色是您想要的图像。
并在定义切换按钮的xml部分添加:
android:background="@drawable/my_btn_toggle
希望这会对你有所帮助。