I need your help to solve my layout problem.. I have 4 RadioButtons, they appear as usual in this scheme:
O text1 O text2 O text3 O text4
where O is the button.. I would know if it’s possible to change this layout in this way:
O O O O
text1 text2 text3 text4
I don’t think the plain RadioButton widget can do that by default. You’ll need to do one of a few things to achieve that effect. You can create your own RadioButton view class by combining a RadioButton and a TextView so that you have complete control over where the items are in relation to each other. Or you can skip making it a view and just use two elements in your layout, 1 TextView and one RadioButton(with no text set to it).