开关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)的颜色

Android开关:Switch控件

Android 自定义实现switch开关按钮

android开关控件Switch和ToggleButton

Appium Android 如何检查switch开关状态

VUE实现Studio管理后台:开关(Switch)控件,输入框input系列