Android对齐表格的内容

时间:2012-07-01 14:17:08

标签: android android-layout

我正在努力让表格单元格的内容左右对齐。我的代码是:

<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_height="fill_parent"
        android:layout_weight="1"
        android:adjustViewBounds="true"
        android:background="@null"
        android:scaleType="fitCenter"
        android:src="@drawable/button_one" />

    <ImageButton
        android:id="@+id/button_two"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:adjustViewBounds="true"
        android:background="@null"
        android:scaleType="fitCenter"
        android:src="@drawable/button_two" />
</TableRow>
....

我希望2个ImageButton在中间贴合在一起,但目前有一个间隙 - 看起来每个单元都是内容的中心。该表扩展到屏幕的完整大小,总共有4行与上面相同。我希望图像按钮调整大小以填充屏幕,同时保持其宽高比。

我已尝试在图像按钮上设置重力,但它似乎不起作用(仅将其移动几个像素)。

2 个答案:

答案 0 :(得分:1)

您在按钮上缺少android:layout_width="0dp",这将允许布局权重起作用,使每个按钮平均分割可用空间。

答案 1 :(得分:1)

想出来,将scaleType更改为“fitEnd”和“fitStart”似乎已经完成了这一操作。

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tableLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ImageButton
    android:id="@+id/button_one"
    android:layout_height="fill_parent"
    android:layout_weight="1"
    android:adjustViewBounds="true"
    android:background="@null"
    android:scaleType="fitEnd"
    android:src="@drawable/button_one" />

<ImageButton
    android:id="@+id/button_two"
    android:layout_height="fill_parent"
    android:layout_weight="1"
    android:adjustViewBounds="true"
    android:background="@null"
    android:scaleType="fitStart"
    android:src="@drawable/button_two" />

....