我有这个切换:
<ToggleButton
android:id="@+id/toggle_1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/custom_toggle_bg"
android:gravity="bottom|center_horizontal" />
这是可绘制的资源:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/active" android:state_checked="true"/>
<item android:drawable="@drawable/default" android:state_checked="false"/>
</selector>
现在我希望 ToggleButton 的文本(开和关)在 Toggle 更改状态时更改颜色(只有文本,而不是整个 ToggleButton 的背景)。我能怎么做?