android - Is it possible to have RelativeLayouts in a RadioGroup -
i want row in layout
radiobutton, edit text, textview
surrounded radiogroup. radiogroup does't seem work way. i'm generating layout code not xml, show how like:
<scrollview> <linearlayout> <radiogroup> <relativelayout> <radiobutton> <edittext> <textview> </relativelayout> <relativelayout> <radiobutton> <edittext> <textview> </relativelayout> </radiogroup> </linearlayout> </scrollview>
i can select radiobuttons, group not working. wrong, or how solve problem?
you can't have relativelayouts in radiogroup. view rendered expected, radio buttons won't function (they lose grouping). if need edittext inside each button, you'll have code radio button functionality yourself. however, if need different text styles inside radio button, @ spannablestring.
Comments
Post a Comment