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

时间:2012-03-02 16:48:25

标签: 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>

1 个答案:

答案 0 :(得分:5)

使用HorizontalScrollView代替ScrollView