When i try to change background color of radio button text programatically like this:
rb.setBackgroundResource(R.drawable.mycustombackground);
The background covers both the button and the text.
I only want to change the background color of the text part (not the radio button).
How to achieve that?