Is there a way to style a RadioButton as a flat button? I have four options:
| btn1 | btn2 | btn3 | btn4 |
instead of having the little rad
Yes, you can change the drawable used for a radio button.
android:button
(or setButtonDrawable
) controls the image used for the circle. Set it to null if you want no image.
You could then set the background of the radio button with android:background
or setBackgroundResource
to a normal button-style background.