Lollipop(5.0)中切换小部件的行为发生了变化。
<Switch
android:id="@+id/switcher"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_marginBottom="16dp"
android:layout_marginRight="8dp"
android:layout_marginEnd="8dp"
android:layout_toEndOf="@id/another_view"
android:layout_toRightOf="@id/another_view"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:textOff="@string/disabled"
android:textOn="@string/enabled"
android:fontFamily="sans-serif-condensed"
/>
targetSdkVersion = 19时的渲染开关:
targetSdkVersion = 21时的渲染开关:
请注意,Android Studio中的预览渲染仍会生成带文本的开关,但是当使用Lollipop(Nexus 5)的设备上运行使用targetSdkVersion = 21构建的apk时,开关会丢失它的文本。在同一个Lollipop设备上运行使用targetSdkVersion = 19构建的apk,可以按预期正确显示开关。
为什么呢?任何建议的解决方法?
答案 0 :(得分:119)
默认情况下,在“主题”主题下不显示文本,因为切换窗口小部件资产不能与文本一起使用。您设置的任何文本都将用于描述无障碍服务的内容。
您可以使用android:showText
属性或Switch.setShowText(boolean)
方法更改此内容。
<Switch
...
android:showText="true" />
如果您使用的是AppCompat切换,请改用app:showText
。