0

请看一下这个 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 在我的设备中显示良好(完全集中)。但是,当我在另一台具有更大屏幕的设备上测试该应用程序时,这三个图像似乎向左对齐。

有没有办法使布局集中?不管屏幕宽度是多少?

4

2 回答 2

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"
>
于 2011-06-29T11:57:38.423 回答
0

用类似格式的每个图像按钮用线性布局包装。将每个线性布局的重力设置为中心。所有线性布局的布局宽度 = fill_parent。

于 2011-06-29T12:01:30.607 回答