我有以下表格布局,用于在网格中显示图像按钮。
<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>
如您所见,第一行包含两列,第二行包含一列。
我希望图像扩展以适合表格单元格。然而,底部图像按钮的边缘与顶部的两个图像按钮并没有完全对齐。就好像底部单元格上有额外的填充或边距。
任何想法如何让这些完美排列?
提前致谢。
截屏: