2012-03-02 2 views
1

ラジオグループにラジオボタンの量が多くて、ストレッチしたい場合は、小さなボタンに縛られるのではなく、ラジオグループをScrollViewに入れることを考えました。しかし、これは機能しません。誰でもこれを達成するためのアイデアですか?ScrollViewの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> 

答えて

5

の問題を解決する代わりにScrollView

+0

の使用HorizontalScrollView。どういうわけか分かりませんが、それについて考えなかったのです。どうもありがとうございました。 –

関連する問題