Remove RadioButton Icon

Is there a way to completely remove the icon from RadioButton?

I use the icon instead of text.

Android setup: button for @null or @android: color / transparency only hides the button and will still ruin my test positioning.

I suppose I could use a dummy view that only 1dip is big, but I wanted to check if there was less hacking.

+6
source share
2 answers

Try setting the background and button to @null.

+15
source

set android:button="@null" will remove the default radio station icon

0
source

Source: https://habr.com/ru/post/917481/


All Articles