空のボタンがいくつかあるテーブルビューがあります。アプリを実行すると、すべてのボタンが上部に詰め込まれます。テーブルが画面領域全体を占めるようにするにはどうすればよいですか?
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TableRow
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:id="@+id/button1"
/>
</TableRow>
私のレイアウトは実際にはかなり大きいので、これはほんの一例です