グリッドに画像ボタンを表示するために使用している次のテーブル レイアウトがあります。
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tableLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableRow
android:id="@+id/tableRow4"
android:layout_weight="1" >
<ImageButton
android:id="@+id/button_one"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:adjustViewBounds="true"
android:background="@drawable/button"
android:scaleType="fitCenter"
android:src="@drawable/button_one" />
<ImageButton
android:id="@+id/button_two"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:adjustViewBounds="true"
android:background="@drawable/button"
android:scaleType="fitCenter"
android:src="@drawable/button_two" />
</TableRow>
<TableRow
android:id="@+id/tableRow4"
android:layout_weight="1" >
<ImageButton
android:id="@+id/button_three"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:adjustViewBounds="true"
android:background="@drawable/button"
android:scaleType="fitCenter"
android:src="@drawable/button_three" />
</TableRow>
ご覧のとおり、最初の行には 2 つの列が含まれ、2 番目の行には 1 つの列が含まれています。
表のセルに合わせて画像を拡大したい。ただし、下部の画像ボタンの端は、上部の 2 つの画像ボタンと完全には一致しません。下のセルに余分なパディングまたはマージンがあるかのようです。
これらを完全に並べる方法はありますか?
前もって感謝します。
スクリーンショット: