0

我有一个通过调用新活动来实现的列表视图。布局如下:

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

<LinearLayout
    android:id="@+id/listWrap"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_above="@+id/testbutton"
    android:layout_alignParentTop="true"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/item_title"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="2dp"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textSize="20dp" >
    </TextView>

    <ListView
        android:id="@id/android:list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:drawSelectorOnTop="false" >
    </ListView>

    <TextView
        android:id="@+id/item_subtitle"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="2dp"
        android:textSize="13dp" >
    </TextView>
</LinearLayout>

<Button
    android:id="@+id/testbutton"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:text="@string/hello" /></RelativeLayout>

当活动加载时,按钮位于底部,但一旦加载列表而不是列表字段,按钮就会出现在每个列表项中。我怎样才能让这个按钮留在底部并在上面有一个列表?

4

3 回答 3

0

您可以根据图形布局中的视图更改列表视图集的高度:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:layout_width="match_parent"
android:layout_height="250dp"
android:id="@+id/lv1"
android:background="#000"
android:scrollingCache="false"/>
<Button
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:text="OK"
 android:id="@+id/btnok"
 />

于 2013-10-10T12:36:46.680 回答
0

将 Button 保持在单独的布局中并检查一次

于 2012-05-29T05:25:16.343 回答
-2

从来没有尝试过(我觉得它看起来不太好),但如果我是你,我会尝试添加权重或给按钮一个 minHeight 。

于 2012-05-28T19:40:59.293 回答