gpt4 book ai didi

android - 更改样式中的单选按钮文本颜色

转载 作者:太空狗 更新时间:2023-10-29 16:11:14 29 4
gpt4 key购买 nike

我尝试如下更改radiobutton textcolor,(因为主题中的textcolor不适用于radiobutton,我将其添加为单独的样式)

<style name="BlueTheme" >
<item name="android:background">#B0E0E6</item>
<item name="android:textColor">#ffffff</item>
<item name="android:radioButtonStyle">@style/mystyletwo</item>
</style>
<style name="mystyletwo">
<item name="android:textColor">#ffffff</item>
</style>

The problem is , textcolor is changed but the circle button is not visible.

最佳答案

试试这个

 <item name="android:tint">#ffffff</item>

(或)

你可以试试这个

 <android.support.v7.widget.AppCompatRadioButton
android:id="@+id/rbtn_test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:buttonTint="@color/primary" />

(或) 添加父主题

 parent="Base.Widget.AppCompat.CompoundButton.RadioButton"

请将此行添加到您的样式中。

关于android - 更改样式中的单选按钮文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47863018/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com