android radiogroup 字体颜色
时间: 2023-07-28 12:33:55 浏览: 76
android字体颜色
要修改 Android RadioGroup 中所有 RadioButton 的字体颜色,可以使用以下代码:
```xml
<style name="RadioButtonStyle" parent="AppTheme">
<item name="android:textColor">@color/radio_button_text_color</item>
</style>
```
然后在 RadioGroup 中添加以下属性:
```xml
android:theme="@style/RadioButtonStyle"
```
其中 `@color/radio_button_text_color` 是你想要设置的字体颜色。
阅读全文