无法在 Android 上更改单选按钮颜色
Posted
技术标签:
【中文标题】无法在 Android 上更改单选按钮颜色【英文标题】:Can't change Radio Button color on Android 【发布时间】:2015-04-03 03:45:19 【问题描述】:我正在使用 android Studio。我需要更改单选按钮的颜色,在将按钮色调颜色值更改为我需要的颜色后,它可以在预览中使用,但是每当我在设备上启动应用程序时,按钮都是标准的绿色/蓝色。
这是某种设备 API 级别的问题吗?如果是这样,是否可以更改旧设备的颜色?
【问题讨论】:
看到这个帖子***.com/a/52802572/4797289 【参考方案1】:假设您在应用中使用 appcompat,只需在 styles.xml 中添加以下内容
<item name="colorAccent">@color/blue</item>
现在将设置蓝色颜色重音,只需将颜色更改为您想要的任何颜色。
例如,整个 style.xml
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/accent_material_dark</item>
<item name="colorPrimaryDark">@color/accent_color_dark</item>
<item name="colorAccent">@color/accent_color</item>
<item name="windowActionBar">false</item>
</style>
</resources>
【讨论】:
@victor freg mark 回答了我的回答是否对您有帮助,以便对其他用户有所帮助【参考方案2】:阅读@Ranjith 的回答后,我做了一些挖掘,这似乎奏效了。只需将其添加到您的 AppTheme。
//red is the color of the pressed state and activated state
<item name="colorControlActivated">@android:color/holo_red_light</item>
//black is the color of the normal state
<item name="colorControlNormal">@android:color/black</item>
我的问题是,由于我有动态单选按钮,您如何以编程方式执行此操作??
【讨论】:
【参考方案3】:RadioButton raPrivate = (RadioButton) layout.findViewById(R.id.radioPrivate);
int textColor = Color.parseColor(#000000);
raPrivate.setButtonTintList(ColorStateList.valueOf(textColor));
【讨论】:
看起来 buttonTint 仅在 API 21 及更高版本中使用。知道在此之前使用什么吗? @McAdam331 请参阅my answer below。 在各种失败的答案之后,这个答案加上AppCompatRadioButton
就是答案。谢谢
太棒了! setSupportButtonTintList
在 API 21 及更高版本上的工作就像一个魅力。【参考方案4】:
不需要额外的样式。 Android 通过 xml 支持它。 只需在单选按钮中添加 android:buttonTint="@color/yourColor"。
例如。
<RadioButton
android:layout_
android:layout_
android:buttonTint="@color/red"
android:text="Upload"
android:textColor="@color/text_dark_gray"
android:textSize="14sp" />
【讨论】:
【参考方案5】://red is the color of the pressed state and activated state
<item name="colorControlActivated">@android:color/holo_red_light</item>
//black is the color of the normal state
<item name="colorControlNormal">@android:color/black</item>
发件人:user2968401
一旦你为单选按钮设置了不同的样式,你可以通过将它们分配给一个新的单选按钮来交换它们:
(RadioButton)layout.findViewById(R.id.radioButton) = new RadioButton(this, null, R.style.RadioButton_style);
【讨论】:
【参考方案6】:我是这样做的:
截图
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainActivity"
tools:showIn="@layout/app_bar_main">
<RadioGroup
android:id="@+id/radioGroup"
android:layout_
android:layout_>
</RadioGroup>
</RelativeLayout>
MainActivity.java
public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
RadioGroup radioGroup = (RadioGroup) findViewById(R.id.radioGroup);
/**
* First Radio Buttonn
*/
RadioButton radioButtonAndroid = (RadioButton) getLayoutInflater().inflate(R.layout.custom_radiobutton, null);
radioButtonAndroid.setText("Hello Android");
radioGroup.addView(radioButtonAndroid);
/**
* Second Radio Buttonn
*/
RadioButton radioButtonios = (RadioButton) getLayoutInflater().inflate(R.layout.custom_radiobutton, null);
radioButtonIos.setText("Hello Ios");
radioGroup.addView(radioButtonIos);
custom_radiobutton.xml
<?xml version="1.0" encoding="utf-8"?>
<RadioButton xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_
android:buttonTint="@color/colorPrimary"
android:text="">
</RadioButton>
希望这会对你有所帮助。
【讨论】:
【参考方案7】:如果您想更改颜色,但不更改整个应用的 colorControlActivated 和 colorControlNormal,您可以通过创建新样式来覆盖单选按钮的应用主题:
<android.support.v7.widget.AppCompatRadioButton
android:layout_
android:layout_
android:layout_centerVertical="true"
android:layout_alignParentEnd="true"
android:theme="@style/RadioButtonTheme"
android:id="@+id/radioButton"/>
<style name="RadioButtonTheme" parent="@style/AppTheme">
<item name="colorControlActivated">@color/colorAccent</item>
<item name="colorControlNormal">@color/colorPrimaryDark</item>
</style>
【讨论】:
【参考方案8】:这可以通过两种方式完成(以支持棒棒糖之前的版本):
使用AppCompatRadioButton
:
AppCompatRadioButton radioButton;
// now use following methods to set tint colour
radioButton.setSupportButtonTintMode();
radioButton.setSupportButtonTintList();
将此样式应用到您的 XML 中的 RadioButton
:
<style name="RadioButton.Login" parent="Widget.AppCompat.CompoundButton.RadioButton">
<item name="android:textColor">@android:color/white</item>
<item name="buttonTint">@android:color/white</item>
</style>
【讨论】:
不错的答案,感谢您提供向后兼容性支持。以上是关于无法在 Android 上更改单选按钮颜色的主要内容,如果未能解决你的问题,请参考以下文章