Is it possible to add a little bit of space between a RadioButton and the label while still using Android\'s built-in components? By default the text looks a little scrunche
You can this code on your XML file
or use this on Activity class
radioButton.setPadding(12, 10, 0, 10);