如果你在RadioGroup中有更多的单选按钮并希望它们伸展,而不是挤进小按钮,我想把RadioGroup放在ScrollView中。但是这不起作用。任何人都知道如何实现这一目标?
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
>
<RadioGroup
android:id="@+id/news_radiogroup"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<RadioButton />
<RadioButton />
<RadioButton />
<RadioButton />
and more
</RadioGroup>
</ScrollView>
答案 0 :(得分:5)
使用HorizontalScrollView
代替ScrollView