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 I launch the app on a device the button is the standard green/blue-ish color.
Is this some kind of device API level issue? If so, is it possible to change the color for older devices?
If you want to change the color, but not change colorControlActivated and colorControlNormal for the entire app, you can override your apptheme just for the radio button by creating a new style:
I have done this way:
Screenshot
activity_main.xml
MainActivity.java
custom_radiobutton.xml
Hope this will help you.