Android:Centralized TableLayout?

时间:2011-06-29 11:54:15

标签: android android-layout center tablelayout tablerow

请查看此XML代码:

<TableLayout
    android:id="@+id/tableLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="10dip"
    android:isScrollContainer="true"
    android:scrollbarStyle="outsideInset">

    <TableRow
    android:id="@+id/tableRow1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

    >
        <ImageButton
        <!-- Some Code -->
        />
        <ImageButton
        <!-- Some Code -->
        />
        <ImageButton
        <!-- Some Code -->
        />
    </TableRow>
</TableLayout>

三个ImageButtons在我的设备中正常显示(完全集中)。但是,当我在另一台屏幕较大的设备上测试应用程序时,这三个图像似乎与左侧对齐。

有没有办法让布局集中化?无论屏幕宽度是多少?

2 个答案:

答案 0 :(得分:1)

这应该这样做..如果我以正确的方式理解你的问题......

 <TableLayout
        android:id="@+id/tableLayout1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="10dip"
        android:isScrollContainer="true"
        android:scrollbarStyle="outsideInset"
        android:gravity="center_Horizontal|Center_Vertical">
 <TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_Horizontal|Center_Vertical"
>

答案 1 :(得分:0)

使用linearlayout以类似格式包装每个图像按钮。将每个线性布局的重力设置为中心。和layout width = fill_parent用于所有linearlayouts。