窗口小部件切换仅显示文本而不显示按钮

时间:2015-11-17 21:47:16

标签: android android-widget android-switch

我有一个不会显示为开关的开关小部件。相反,我只是看到了文字。

Switch button only displays text and not the button

以下是代码:

<Switch
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:id="@+id/switch1"
    android:layout_below="@id/divider5"
    android:textOff="OFF"
    android:textOn="ON"/>

我该怎么做才能解决它?

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。您应该将一些可绘制资源设置为拇指和跟踪开关。 例如:

<Switch
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:id="@+id/switch1"
    android:layout_below="@id/divider5"
    android:textOff="OFF"
    android:textOn="ON"
    android:track="@drawable/your_track"
    android:thumb="@drawable/your_thumb" />