安卓的ToggleButton是一个可切换状态的按钮控件,它可以在选中和未选中状态之间进行切换。在style.xml文件中,无法直接设置ToggleButton的textColor属性。但是可以通过以下方法来实现设置ToggleButton的文本颜色:
<style name="CustomToggleButtonStyle" parent="Widget.AppCompat.Button.Toggle">
<item name="android:textColor">#FF0000</item> <!-- 设置文本颜色为红色 -->
</style>
然后,在布局文件中使用该样式:
<ToggleButton
android:id="@+id/toggleButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Toggle Button"
style="@style/CustomToggleButtonStyle" />
ToggleButton toggleButton = findViewById(R.id.toggleButton);
toggleButton.setTextColor(Color.RED); // 设置文本颜色为红色
领取专属 10元无门槛券
手把手带您无忧上云