Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting button tint on radio button programmatically

I want to set a radio button tint programmatically. in xml there is an attribute called "buttonTint" to do the work. but in program I am not able to find any method to set tint or color to the radio button. is there any method or any ways to do that?

 <RadioButton
    android:buttonTint="@color/colorPrimaryDark"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Payeer" />
like image 455
Sorwar Hossain Mostafa Avatar asked May 14 '26 06:05

Sorwar Hossain Mostafa


2 Answers

You can use setButtonTintList (ColorStateList tint)

Applies a tint to the button drawable. Does not modify the current tint mode, which is SRC_IN by default.

Subsequent calls to setButtonDrawable(Drawable) will automatically mutate the drawable and apply the specified tint and tint mode using setTintList(ColorStateList).

SAMPLE CODE

public class MainActivity extends AppCompatActivity {

    RadioButton radioButton;

    @SuppressLint("NewApi")
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        radioButton = findViewById(R.id.radioButton);

        ColorStateList myColorStateList = new ColorStateList(
                new int[][]{
                        new int[]{getResources().getColor(R.color.colorPrimaryDark)}
                },
                new int[]{getResources().getColor(R.color.colorAccent)}
        );

        radioButton.setButtonTintList(myColorStateList);

    }


}
like image 157
AskNilesh Avatar answered May 15 '26 21:05

AskNilesh


Based on both previous answer one line code for setting background color is

Java code

button.setButtonTintList(ColorStateList.valueOf(getColor(R.color.red)));

Kotlin code

button.buttonTintList=ColorStateList.valueOf(getColor(R.color.red))
like image 38
Faraz Ahmed Avatar answered May 15 '26 20:05

Faraz Ahmed



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!