我对标准的 android Switch 组件有一个奇怪的问题。
我已经分配了我的自定义跟踪器和拇指可绘制对象 - 一切看起来和工作正常,除了 textColor 属性的颜色总是很暗(可能是主题颜色)。
试图通过 android:textColor 属性以十六进制分配颜色,作为资源和选择器。不幸的是,每一次努力都未能实现改变的目标
有没有人遇到过这个问题?
这是我的用法:
<Switch
android:id="@id/settings_lock_screen_compound_btn"
android:layout_width="97dp"
android:layout_height="24dp"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:textOff="Off"
android:textOn="On"
android:textSize="12sp"
android:thumb="@drawable/switch_thumb"
android:track="@drawable/switch_track_bg" />