已经为此苦苦挣扎了一段时间。我有一个由各种 LinearLayouts 组成的布局 XML,具有单独的权重。最终结果看起来像这样..
不要介意颜色,它只是为了查看断点。无论如何,在终端/原点等 LinearLayout 下方是一个使用自定义适配器填充的 ListView。数据加载正常,但随后 listView “突破”了 LinearLayout,并占据了大部分页面
(不要介意颜色,它只是为了查看断点..)
IE。它流过上面和下面的视图。
我的 XML 如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:ignore="HardcodedText" >
<RelativeLayout
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.2"
android:background="#FF0000"
android:gravity="right" >
<Button
android:id="@+id/update"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:onClick="getFlightInfo"
android:text="Refresh" />
</RelativeLayout>
<LinearLayout
android:id="@+id/table_header"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="0.4"
android:background="#FFFFFF"
android:weightSum="1" >
<TextView
android:id="@+id/header_cell1"
android:layout_width="0px"
android:layout_height="fill_parent"
android:layout_weight="@string/cell_1_weight"
android:gravity="center_vertical"
android:paddingLeft="5dp"
android:paddingRight="12dp"
android:text="@string/table_header_terminal"
android:textSize="11dp" />
<TextView
android:id="@+id/header_cell2"
android:layout_width="0px"
android:layout_height="fill_parent"
android:layout_weight="@string/cell_2_weight"
android:gravity="center_vertical"
android:paddingRight="12dp"
android:text="@string/table_header_origin"
android:textSize="11dp" />
<TextView
android:id="@+id/header_cell3"
android:layout_width="0px"
android:layout_height="fill_parent"
android:layout_weight="@string/cell_3_weight"
android:gravity="center_vertical"
android:paddingRight="12dp"
android:text="@string/table_header_flight"
android:textSize="11dp" />
<TextView
android:id="@+id/header_cell4"
android:layout_width="0px"
android:layout_height="fill_parent"
android:layout_weight="@string/cell_4_weight"
android:gravity="center_vertical"
android:paddingRight="12dp"
android:text="@string/table_header_scheduled"
android:textSize="11dp" />
<TextView
android:id="@+id/header_cell5"
android:layout_width="0px"
android:layout_height="fill_parent"
android:layout_weight="@string/cell_5_weight"
android:gravity="center_vertical"
android:paddingRight="12dp"
android:text="@string/table_header_status"
android:textSize="11dp" />
</LinearLayout>
<LinearLayout
android:id="@+id/table_list_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="3"
android:background="#FFFFFF"
android:orientation="vertical" >
<ListView
android:id="@+id/list_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
<LinearLayout
android:id="@+id/filter"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#00FF00" />
</LinearLayout>
我可能错过了一些明显的东西,但对于我的生活,我看不到它。任何人都可以帮忙吗?
太感谢了..