我想在我的项目之一中更改RadioButton圆圈的颜色,但我不知道要设置哪个属性。我的背景色是黑色,因此不可见。我想将圆圈的颜色设置为白色。
我想在我的项目之一中更改RadioButton圆圈的颜色,但我不知道要设置哪个属性。我的背景色是黑色,因此不可见。我想将圆圈的颜色设置为白色。
Answers:
更简单,只需设置buttonTint颜色:(仅适用于api级别21或更高)
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/radio"
android:checked="true"
android:buttonTint="@color/your_color"/>
在您的values / colors.xml中,在这种情况下将您的颜色变成红色:
<color name="your_color">#e75748</color>
结果:
如果您想通过代码(也是api 21及更高版本)来执行此操作:
if(Build.VERSION.SDK_INT>=21)
{
ColorStateList colorStateList = new ColorStateList(
new int[][]{
new int[]{-android.R.attr.state_enabled}, //disabled
new int[]{android.R.attr.state_enabled} //enabled
},
new int[] {
Color.BLACK //disabled
,Color.BLUE //enabled
}
);
radio.setButtonTintList(colorStateList);//set the color tint list
radio.invalidate(); //could not be necessary
}
control.getDrawable().setColorFilter(getResources().getColor(color), PorterDuff.Mode.SRC_IN);
where control
是要更改色彩的控件,并且color
是您想要的颜色的整数值,例如R.color.red
android.R.attr.state_checked
然后添加颜色。
更新: 1.改用这个
<android.support.v7.widget.AppCompatRadioButton
android:id="@+id/rbtn_test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:buttonTint="@color/primary" />
2.然后将此行添加到父级布局或Alt + Enter
在Android Studio中自动添加
xmlns:app="http://schemas.android.com/apk/res-auto"
最小示例应如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.AppCompatRadioButton
android:id="@+id/rbtn_test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:buttonTint="@color/primary" />
</LinearLayout>
3.在您的程序中,应这样调用。
AppCompatRadioButton radioButton = (AppCompatRadioButton) view.findViewById(R.id.rbtn_test);
基本上,这种模式可以应用于所有AppCompact类型,例如AppCompatCheckBox,AppCompatButton等。
旧答案:
为了支持以下android API 21,您可以使用AppCompatRadioButton。然后使用setSupportButtonTintList
方法更改颜色。这是我创建单选按钮的代码段。
AppCompatRadioButton rb;
rb = new AppCompatRadioButton(mContext);
ColorStateList colorStateList = new ColorStateList(
new int[][]{
new int[]{-android.R.attr.state_checked},
new int[]{android.R.attr.state_checked}
},
new int[]{
Color.DKGRAY
, Color.rgb (242,81,112),
}
);
rb.setSupportButtonTintList(colorStateList);
API 19的测试结果:
详情请参阅android 参考链接。
<android.support.v7.widget.AppCompatRadioButton ../>
setSupportButtonTintList
是您不打算使用的私有方法。在某些版本的Android上,单选按钮的行为会很奇怪。而是使用CompoundButtonCompat.setButtonTintList(rb, colorStateList)
。
<android.support.v7.widget.AppCompatRadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:buttonTint="@color/Color" />
在API的工作预先21以及21后
在你styles.xml
放:
<!-- custom style -->
<style name="radionbutton"
parent="Base.Widget.AppCompat.CompoundButton.RadioButton">
<item name="android:button">@drawable/radiobutton_drawable</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">false</item>
<item name="android:backgroundDimEnabled">true</item>
</style>
您radio button
的xml应该如下所示:
<RadioButton
android:layout_width="wrap_content"
style="@style/radionbutton"
android:checked="false"
android:layout_height="wrap_content"
/>
现在您需要做的就是radiobutton_drawable.xml
在您的计算机中创建一个drawable folder
。这是您需要放入的内容:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/radio_unchecked" android:state_checked="false" android:state_focused="true"/>
<item android:drawable="@drawable/radio_unchecked" android:state_checked="false" android:state_focused="false"/>
<item android:drawable="@drawable/radio_checked" android:state_checked="true" android:state_focused="true"/>
<item android:drawable="@drawable/radio_checked" android:state_checked="true" android:state_focused="false"/>
</selector>
您的radio_unchecked.xml
:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<stroke android:width="1dp" android:color="@color/colorAccent"/>
<size android:width="30dp" android:height="30dp"/>
</shape>
您的radio_checked.xml
:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="oval">
<stroke android:width="1dp" android:color="@color/colorAccent"/>
<size android:width="30dp" android:height="30dp"/>
</shape>
</item>
<item android:top="5dp" android:bottom="5dp" android:left="5dp" android:right="5dp">
<shape android:shape="oval">
<solid android:width="1dp" android:color="@color/colorAccent"/>
<size android:width="10dp" android:height="10dp"/>
</shape>
</item>
</layer-list>
只需替换@color/colorAccent
为您选择的颜色即可。
您必须使用以下代码:
<android.support.v7.widget.AppCompatRadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:buttonTint="@color/black"
android:text="Radiobutton1"
app:buttonTint="@color/black" />
使用app:buttonTint
代替android:buttonTint
和也android.support.v7.widget.AppCompatRadioButton
代替Radiobutton
!
在styles.xml文件中声明自定义样式。
<style name="MyRadioButton" parent="Theme.AppCompat.Light">
<item name="colorControlNormal">@color/indigo</item>
<item name="colorControlActivated">@color/pink</item>
</style>
通过android:theme属性将此样式应用于您的RadioButton。
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="Radio Button"
android:theme="@style/MyRadioButton"/>
仅当您的活动扩展时 AppCompatActivity
<item name="android:colorControlActivated">@color/pink</item>
它来为我工作。我仍然不确定为什么。否则,这是一个很好的答案。
适用于API 21
创建自定义样式RadioButton style.xml
<style name="RadioButton" parent="Theme.AppCompat.Light">
<item name="colorAccent">@color/green</item>
<item name="android:textColorSecondary">@color/mediumGray</item>
<item name="colorControlNormal">@color/red</item>
</style>
在布局中使用主题:
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:theme="@style/RadioButton" />
适用于API 21及更高版本
只需使用buttonTint
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:buttonTint="@color/green" />
这个问题很老,但我认为我的回答会帮助人们。您可以通过使用xml中的样式来更改单选按钮的未选中状态和选中状态的颜色。
<RadioButton
android:id="@+id/rb"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:theme="@style/RadioButtonStyle" />
在style.xml中
<style name="RadioButtonStyle" parent="Theme.AppCompat.Light">
<item name="colorAccent">@android:color/white</item>
<item name="android:textColorSecondary">@android:color/white</item>
</style>
您可以使用这种样式设置所需的颜色。
我做了这样简短的介绍(在API 21之前和21上工作)
xml中的单选按钮应如下所示
<RadioButton android:id="@+id/radioid"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:button="@drawable/radiodraw" />
在radiodraw.xml中
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="false" >
<shape android:shape="oval" >
<stroke android:width="1dp" android:color="#000"/>
<size android:width="30dp" android:height="30dp"/>
<solid android:color="@android:color/transparent"/>
</shape>
</item>
<item android:state_checked="true">
<layer-list>
<item>
<shape android:shape="oval">
<stroke android:width="1dp" android:color="#000"/>
<size android:width="30dp" android:height="30dp"/>
<solid android:color="@android:color/transparent"/>
</shape>
</item>
<item android:top="5dp" android:bottom="5dp" android:left="5dp" android:right="5dp">
<shape android:shape="oval">
<solid android:width="1dp" android:color="#000"/>
<size android:width="10dp" android:height="10dp"/>
</shape>
</item>
</layer-list>
</item>
</selector>
必须添加透明颜色以绘制未选中状态;否则将绘制纯黑色椭圆形。
有时您只需要像这样重写colorControlNormal:
<style name="RadioButtonStyle" parent="AppTheme">
<item name="colorControlNormal">@color/pink</item>
<item name="colorAccent">@color/colorPrimary</item>
<item name="android:textColorSecondary">@color/black</item>
</style>
然后您将获得如下所示的按钮:
colorControlNormal用于未检查状态,而colorAccent用于已检查。
有一个xml属性:
android:buttonTint="yourcolor"
"Make sure your min API is higher then 21 or this won't work"
那是错误的。我将Android 17定位为API 17,这是唯一对我
对于那些想要更改禁用,已检查和启用状态的用户,请执行以下步骤:
<!-- Or androidX radio button or material design radio button -->
<android.support.v7.widget.AppCompatRadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:buttonTint="@color/black"
android:text="Radiobutton1"
app:buttonTint="@color/radio_button_color" />
然后在color res文件夹中创建一个名为“ radio_button_color.xml”的文件:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="@color/yellow900" android:state_selected="true" />
<item android:color="@color/yellow800" android:state_checked="true" />
<item android:color="@color/gray800" android:state_enabled="false" />
<item android:color="@color/yellow800" android:state_enabled="true" />
</selector>
默认情况下,RadioButton在res / values / colors.xml文件中采用colorAccent的颜色。因此,转到该文件并更改
<color name="colorAccent">#3F51B5</color>
到您想要的颜色。
最简单的方法是更改 colourAccent
颜色,values->colours.xml
但要注意,它也会更改其他内容,例如编辑文本光标的颜色等。
< color name="colorAccent">#75aeff</color >
如果要为单击和未单击的单选按钮设置不同的颜色,请使用:
android:buttonTint="@drawable/radiobutton" in xml of the radiobutton and your radiobutton.xml will be:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:color="#1E88E5"/>
<item android:state_checked="true" android:color="#00e676"/>
<item android:color="#ffffff"/>
我有这个问题。如果您的应用程序具有黑色背景,并且您有很多由于背景不可见的RadioButtons,则编辑每个android:buttonTint会很复杂,最好的解决方案是在styles.xml文件中更改父主题
我变了
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
至
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
因此,RadioButton的圆圈变成了较浅的灰色阴影,现在即使在黑色背景下也可以看到。
这是我的style.xml文件:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
@ jh314是正确的。在AndroidManifest.xml中,
<application
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/AppTheme"></application>
在style.xml中
<!-- Application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorAccent">@color/red</item>
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
项目名称必须为colorAccent,它决定了应用程序小部件的默认颜色。
但是,如果您想更改代码中的颜色,@ aknay的答案也许是正确的。