listview必须显示所有项目列表

时间:2012-08-30 06:54:47

标签: android

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >



<LinearLayout
    android:id="@+id/asda"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/TableLayout01"
    android:layout_marginLeft="50dp"
    android:layout_marginRight="40dp"
    android:layout_marginTop="1dp" >

    <ListView
        android:id="@+id/_lv_labels"
        android:layout_width="wrap_content"
        android:layout_height="318dp"
        android:layout_weight="1"
        android:choiceMode="multipleChoice" />
</LinearLayout>

<TableLayout
    android:id="@+id/TableLayout01"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignRight="@+id/asda"
    android:layout_marginBottom="114dp"
    android:gravity="bottom"
    android:stretchColumns="*" >

    <TableRow
        android:id="@+id/TableRow01"
        android:gravity="bottom" >

        <Button
            android:id="@+id/_btn_scannewitem"
            android:layout_width="90dp"
            android:layout_height="wrap_content"
            android:layout_marginRight="2dp"
            android:text="Scan New Item" />

        <Button
            android:id="@+id/_btn_saveNewItem"
            android:layout_width="90dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="2dp"
            android:text="Save Your Item"
            android:visibility="gone" />

        <Button
            android:id="@+id/_btn_changeprofile"
            android:layout_width="80dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="2dp"
            android:text="Change Profile" />
    </TableRow>
</TableLayout>


 </RelativeLayout>

我已经使用了这段代码,但我没有得到我期待的设计,而是我得到了这样的页面。 with the listview having olny limited list

但我期待这样的设计。 the second image is what i am expecting

1 个答案:

答案 0 :(得分:0)

您无需将ListView包裹在LinearLayout中,并且可以将ListView身高设置为match_parentfill_parent

另外,请从列表下方的android:layout_marginBottom="114dp"中删除TableLayout属性。