最佳答案
我在这里看过很多类似的问题,但没有任何帮助。
我有一个不同的嵌套布局层次结构,都有 android:layout_width="fill_parent"
,和最内层的布局有 android:layout_width="wrap_content
-我需要对齐它在中心(水平)。我该怎么做?
更新: : 我已经找到了问题的原因——如果我使用 android:layout_width="fill_parent"
将内部 LinearLayout 放入 RelativeLayout,它仍然会包装它的内容。然而,TableRow 确实填满了屏幕。
<?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>