我有一个listview,我通过调用一个新活动来实现。布局如下:
<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>
当活动加载时,按钮位于底部,但是一旦加载列表而不是列表字段,按钮就会出现在每个列表项中。如何让这个按钮保持在底部并在上面有一个列表?
答案 0 :(得分:0)
将Button保持在单独的布局中并检查一次
答案 1 :(得分: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"
/>
答案 2 :(得分:-2)
从未尝试过(我发现它看起来不太好)但是如果我是你的话,我会尝试添加重量或给按钮一个minHeight。