我尝试设置textAppearanceAttribute。但这是行不通的。
 还有另一个属性textColor,但是它是开关的标签。

    <Switch
        android:id="@+id/switch"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="@dimen/double_margin"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:textAppearance="@style/SwitchTextAppearance"
        android:track="@drawable/transit_switch_track"
        android:thumb="@drawable/transit_switch_thumb" />

<style name="SwitchTextAppearance">
    <item name="android:textColor">@android:color/red</item>
</style>

最佳答案

我通过使用drawable解决了这个问题,而不是尝试摆弄颜色。

所以这是代码:

    <Switch
        android:id="@+id/switch"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="@dimen/double_margin"
        android:switchMinWidth="50dp"
        android:textOff=""
        android:textOn=""
        android:thumb="@drawable/switch_thumb"
        android:track="@drawable/switch_track"
        android:checked="false" />


switch_track.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/switch_off" android:state_checked="false"/>
    <item android:drawable="@drawable/switch_on" android:state_checked="true"/>

</selector>


switch_thumb.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/toggle" android:state_enabled="false"/>
    <item android:drawable="@drawable/toggle" android:state_pressed="true"/>
    <item android:drawable="@drawable/toggle" android:state_checked="true"/>
    <item android:drawable="@drawable/toggle"/>

</selector>


这是我的Switch现在的外观:

android - 如何更改Android Switch小部件的拇指的文本颜色(开/关)?-LMLPHP

开关图片

android - 如何更改Android Switch小部件的拇指的文本颜色(开/关)?-LMLPHP

开机图片

android - 如何更改Android Switch小部件的拇指的文本颜色(开/关)?-LMLPHP

切换只是拇指的白色图像。

10-06 06:50