I\'m using Android Studio. I need to change the color of the Radio Button, after changing the Button Tint Color value to the one I need it works on the preview, but whenever
This can be done in two ways (to support pre-Lollipop):
Use AppCompatRadioButton:
AppCompatRadioButton radioButton;
// now use following methods to set tint colour
radioButton.setSupportButtonTintMode();
radioButton.setSupportButtonTintList();
Apply this as style to your RadioButton in your XML: