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