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