所以我在网上搜索答案,我无法在任何地方找到它。无论如何,我试图在我的应用程序中为所有RadioButton-s应用一些自定义样式,但它似乎没有工作。我做错了吗?
以下是代码段:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name = "android:radioButtonStyle">@style/myRadioButtonStyle</item>
</style>
<style name = "myRadioButtonStyle" parent = "@android:style/Widget.CompoundButton.RadioButton" >
<item name = "colorControlNormal">#ff9e060c</item>
<item name = "colorControlActivated">#ff9e060c</item>
<item name = "colorControlHightlight">#ff9e060c</item>
</style>
答案 0 :(得分:0)
我曾经遇到同样的问题,尝试将样式应用于RadioGroup
,而不是将其应用于RadioButton
。