0

我有一个 xml 中的 listView 和一个我想在另一个 xml 中显示的页脚。页脚显示但仅在列表底部。如何让页脚一直显示?

这是我的列表视图 xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >

 <ListView
    android:id="@android:id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
     />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
    android:id="@+id/borrowerName"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@+id/label"
    android:textSize="14sp"
     >
</TextView>

<TextView
    android:id="@+id/borrowerGroupCode"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@+id/label"
    android:textSize="12sp"
    >
</TextView>

<TextView
    android:id="@+id/borrowerLoanAmount"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@+id/label"
    android:textSize="12sp"
    >
</TextView>
</LinearLayout>
<CheckBox
    android:id="@+id/check"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_marginLeft="5px"
    android:layout_marginRight="5px" >
</CheckBox>   
</RelativeLayout>

这是我的页脚 xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
<Button
android:id="@+id/disburse"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/submit"
/>
</LinearLayout>

这是我放在 onCreate 方法中的代码:

View footer = getLayoutInflater().inflate(R.layout.loan_disbursement_footer, null);
getListView().addFooterView(footer);

setListAdapter(adapter);
Button button = (Button)findViewById(R.id.disburse);
button.setOnClickListener(this);

非常感谢帮助。谢谢。

4

1 回答 1

1

将页脚设置为

align_parent_bottom=true

然后将您的列表视图设置为

layout_above="footer"
于 2012-05-23T08:20:42.887 回答