2012-03-02 26 views
1

如果RadioGroup中的單選按鈕數量較多,並希望它們伸展,而不是擠壓成小按鈕,我想將RadioGroup放在ScrollView中。但是這不起作用。任何人都知道如何實現這一目標?ScrollView中的RadioGroup不會填充ScrollView。相反,RadioButtons被擠壓

<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> 

回答

5

使用HorizontalScrollView而不是ScrollView

+0

這解決了問題。沒有想到,雖然有點明顯。非常感謝你。 – 2012-03-02 17:01:05