これは私が書いたサンプル XML です。ボタンの垂直方向のリストと、さらに2列のボタンを作成しようとしています。したがって、合計で 3 つの列があります。各列は垂直方向にスクロール可能になります。列を追加して個別にスクロール可能にするにはどうすればよいですか?
他のいくつかのバリエーションを検索して試しました。私が得ることができる最も近いのはテーブルレイアウトですが、それでは垂直スクロールは不可能に思えました!
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/table"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="*">
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/button1"/>
<Button
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/button2"/>
<Button
android:id="@+id/button3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/button3"/>
</TableLayout>