如何在android中显示带有图像的开关小部件?

时间:2015-03-24 11:41:36

标签: android material-design

请帮助我在android中使用可以改变状态变化的图像创建开关小部件。

应该是这样的:enter image description here

1 个答案:

答案 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

希望这会对你有所帮助。