0
請在這個XML代碼來看看:Android:集中TableLayout?
<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顯示在我的設備精細(恰好集中)。但是,當我在另一個屏幕較大的設備上測試應用程序時,三幅圖像似乎與左側對齊。
有沒有辦法讓佈局集中?不管屏幕寬度是多少?
'android:gravity =「center_Horizontal」'在TableRow中解決它。謝謝 – iTurki