Android:以编程方式更改RadioButtons和复选框的颜色

时间:2015-09-09 06:53:06

标签: android checkbox colors radio-button

我以编程方式在RadioButton中创建了CheckBoxLinearLayout。但是,现在我想更改单选按钮的颜色和复选框的颜色。我用

RadioButton.setHighlightColor(Color.parseColor("#0c83bd"));

checkbox.setHighlightColor(Color.parseColor("#0c83bd"));

但它没有用。

7 个答案:

答案 0 :(得分:17)

使用 AppCompatCheckBox AppCompatRadioButton 代替 CheckBox RadioButton 您的xml将具有:

<android.support.v7.widget.AppCompatCheckBox
    android:id="@+id/cbSelected"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:backgroundTint="@color/colorAccent" //This to set your default button color
    android:checked="true"/>

<android.support.v7.widget.AppCompatRadioButton
    android:id="@+id/rb"
    app:buttonTint="@color/colorAccent" //This to set your default button color
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

现在为java代码: 创建 ColorStateList

        ColorStateList colorStateList = new ColorStateList(
                new int[][]{
                        new int[]{android.R.attr.state_enabled} //enabled
                },
                new int[] {getResources().getColor(R.color.colorPrimary) }
        );

以编程方式更改 AppCompatRadioButton AppCompatCheckBox 的颜色,调用 setSupportButtonTintList

AppCompatRadioButton radioButton = (AppCompatRadioButton) findViewById(R.id.rb);
radioButton.setSupportButtonTintList(colorStateList);

AppCompatCheckBox cbSelected = (AppCompatCheckBox) findViewById(R.id.cbSelected);
cbSelected.setSupportButtonTintList(colorStateList);

答案 1 :(得分:11)

试试这个

AppCompatRadioButton newRadioButton = new AppCompatRadioButton(this);
AppCompatCheckBox newCheckBox = new AppCompatCheckBox(this);

Insted of

RadioGroup newRadioButton = new RadioGroup(this);
CheckBox newCheckBox = new CheckBox(this);

答案 2 :(得分:11)

您可以像这样创建动态RadioButton

RadioButton male = new RadioButton(ReservationContact.this);
male.setTextColor(Color.BLACK);
male.setText("Male");
male.setSelected(true);
male.setId(0);

这用于更改RadioButton

的圆圈的默认颜色
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    male.setButtonTintList(ColorStateList.valueOf(ContextCompat.getColor(ReservationContact.this, R.color.background)));
}
male.setHighlightColor(getResources().getColor(R.color.background));

答案 3 :(得分:2)

对于CheckBox,请将CheckBox替换为AppCompatCheckBox并调用以下方法:

public static void setCheckBoxColor(AppCompatCheckBox checkBox, int uncheckedColor, int checkedColor) {
    ColorStateList colorStateList = new ColorStateList(
            new int[][] {
                    new int[] { -android.R.attr.state_checked }, // unchecked
                    new int[] {  android.R.attr.state_checked }  // checked
            },
            new int[] {
                    uncheckedColor,
                    checkedColor
            }
    );
    checkBox.setSupportButtonTintList(colorStateList);
}

我认为RadioButton应该类似。您可以在android.R.attr中检查声明的属性并更改代码。

答案 4 :(得分:0)

   RadioButton rb=(RadioButton) findViewById(R.id.radioButton1);
    rb.setOnCheckedChangeListener(new OnCheckedChangeListener() {

        @Override
        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
            // TODO Auto-generated method stub
            rb.setButtonDrawable(R.drawable.image);
            rb.setHighlightColor(Color.parseColor("#0c83bd"));


        }
    });
  }

答案 5 :(得分:0)

我继续回答ywwynm。

Google对setSupportButtonTintList进行了限制,因此无法使用它。

解决方法是将该按钮用作TintableCompoundButton接口,该方法不受限制。

可在API 19+中用于AppCompatRadioButton。 AppCompatCheckbox实现了相同的接口,因此从理论上讲应该可以正常工作,但我尚未对其进行测试。

玩得开心:)

public static void setAppCompatRadioButtonColor(AppCompatRadioButton radioButton, int uncheckedColor, int checkedColor) {
    ColorStateList colorStateList = new ColorStateList(
            new int[][] {
                    new int[] { -android.R.attr.state_checked }, // unchecked
                    new int[] {  android.R.attr.state_checked }  // checked
            },
            new int[] {
                    uncheckedColor,
                    checkedColor
            }
    );
    ((TintableCompoundButton) radioButton).setSupportButtonTintList(colorStateList);
}

答案 6 :(得分:0)

我尝试了几种方法来以编程方式实现它,但除了以下方法外,没有一种方法对我有用。把它放在这里,以防有人觉得它有帮助。

<androidx.appcompat.widget.AppCompatRadioButton
    android:id="@+id/radio_btn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@null" />

创建一个颜色状态列表

private fun getRadioButtonColor(): ColorStateList {
    val states = arrayOf(
            intArrayOf(-android.R.attr.state_checked),
            intArrayOf(android.R.attr.state_checked))

    val colors = intArrayOf(
            ContextCompat.getColor(context, R.color.grey2),
            ContextCompat.getColor(context, R.color.actionBlue)
    )

    return ColorStateList(states, colors)
}

然后使用 CompoutButtonCompat 类中的 setButtonTintList 来设置这个 colorStateList

CompoundButtonCompat.setButtonTintList(radio_btn, getRadioButtonColor())