Tôi đã xem qua nhiều câu hỏi tương tự ở đây tại SO, nhưng không có gì hữu ích. Tôi có một hệ thống phân cấp của các bố cục lồng nhau khác nhau, tất cả đều có android:layout_width="fill_parent"
và bố cục bên trong nhất có android:layout_width="wrap_content
- tôi cần căn chỉnh nó ở trung tâm (theo chiều ngang). Làm thế nào để làm điều đó?
Cập nhật:: Tôi đã tìm ra nguyên nhân của sự cố - nếu tôi đặt LinearLayout bên trong vào RelativeLayout với android:layout_width="fill_parent"
, nó vẫn kết thúc nội dung của nó. Tuy nhiên, TableRow đang thực sự lấp đầy màn hình.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TableRow >
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="1"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="2"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
</TableRow>
</TableLayout>
</FrameLayout>
</LinearLayout>
android:layout_gravity="center"
bố cục có chứa TextView - không giúp được gì, nó vẫn được căn trái. Cũng cố gắng đặt chiều rộng của bố cục này thànhwrap
vàfill
- không có sự khác biệt.