我正在尝试为开关按钮打开/关闭切换图像。但它并没有反映出来。 Switch按钮是否提供添加两个选择器图像的功能?
以下是我的代码:
<Switch
android:id="@+id/switchbutton"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:layout_gravity="right"
android:layout_marginRight="10dip"
android:layout_weight="0"
android:background="@drawable/bgtoggle"
android:checked="true"
android:clickable="false"
android:focusable="false"
android:gravity="right|center_vertical"
android:visibility="gone"
tools:ignore="NewApi" />
RES /抽拉/ bgtoggle.xml
<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/switch_on" android:state_checked="true"/>
<item android:drawable="@drawable/switch_off" android:state_checked="false"/>
<item android:drawable="@drawable/switch_off"></item>
</selector>