开关switch系列:android Switch显示文字
Posted zhangjin1120
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了开关switch系列:android Switch显示文字相关的知识,希望对你有一定的参考价值。
上效果图:
- 显示文字,核心三行代码:
android:showText="true"
android:textOff="中"
android:textOn="EN"
- 文字的大小、颜色在
values/styles.xml
文件中定义:
<style name="SwitchTextAppearance" parent="@android:style/TextAppearance.Holo.Small">
<item name="android:textColor">#ffffff</item>
<item name="android:textSize">12sp</item>
</style>
之后设置属性android:switchTextAppearance="@style/SwitchTextAppearance"
- 完整代码如下:
<Switch
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:showText="true"
android:switchTextAppearance="@style/SwitchTextAppearance"
android:textOff="中"
android:textOn="EN" />
以上是关于开关switch系列:android Switch显示文字的主要内容,如果未能解决你的问题,请参考以下文章
开关Switch系列:Switch修改滑块(thumb)和滑道(track)的颜色