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
After reading @Ranjith's answer i did a little digging and this seemed to work. Just add it to your AppTheme.
//red is the color of the pressed state and activated state
- @android:color/holo_red_light
//black is the color of the normal state
- @android:color/black
My question is how do you do this programatically as I have dynamic radio buttons??