ScrollView中的RadioGroup不会填充ScrollView.相反,RadioButtons被挤压了

Mic*_*der 2 android scrollview

如果你在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>
Run Code Online (Sandbox Code Playgroud)

Vya*_*kin 6

HorizontalScrollView而不是ScrollView