本文介绍了安卓:页脚在ListView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个列表视图如下
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="horizontal"
android:background="#E6E7E2">
<ImageView android:id="@+id/Thumbnail" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/icon" />
<TextView android:id="@+id/FilePath" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#E6E7E2"
/>
</LinearLayout>
和我有页脚如下
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_gravity="bottom">
<LinearLayout android:layout_width="fill_parent"
android:layout_alignParentBottom="true"
android:layout_height="wrap_content"
android:id="@+id/layoutfooterbutton" android:layout_gravity="bottom">
<Button android:layout_weight=".30" android:layout_margin="2dp"
android:layout_height="60dp" android:layout_width="100dp"
android:textColor="#FFF" android:gravity="bottom|center"
android:textSize="12dp" android:id="@+id/ButtonAudio" android:background="@drawable/vid_red"/>
<Button android:layout_weight=".30" android:layout_height="60dp" android:layout_width="100dp"
android:gravity="bottom|center" android:background="@drawable/redblank"
android:textColor="#E6E7E2" android:id="@+id/ButtonBrowse" android:layout_marginTop="2dp"/>
<Button android:layout_weight=".30" android:layout_margin="2dp"
android:layout_height="60dp" android:layout_width="100dp"
android:textColor="#FFF" android:gravity="bottom|center"
android:textSize="12dp" android:background="@drawable/reddelete" android:id="@+id/ButtonDelete"/>
</LinearLayout>
</RelativeLayout>
在我使用的页脚添加到列表视图
When I add the footer to the listview using
View header = getLayoutInflater().inflate(R.layout.header, null);
View footer = getLayoutInflater().inflate(R.layout.footer, null);
ListView lv = getListView();
// setting header for the list view
lv.addHeaderView(header);
lv.addFooterView(footer);
setListAdapter(new ArrayAdapter<String>(AudioListActivity.this, R.layout.row_audio, R.id.label, db_results));
它去下面的最后一个ListView项权利。我想页脚是在底部。我怎样才能acheive呢??
It goes to right below the last listview item. I want the footer to be in the bottom. How can I acheive it??
PS:头完全坐在上面
PS: Header perfectly sits on the top.
感谢您的时间提前。
推荐答案
针对您的情况我认为你需要类似的东西了这一点。
for your scenario i think you need something similar to this.
<RelativeLayout>
<include android:id="@+id/header" layout="@layout/header" android:layout_width="fill_parent" android:layout_alignParentTop="true" />
<include android:id="@+id/footer" layout="@layout/footer" android:layout_width="fill_parent" android:layout_alignParentBottom="true" />
<ListView android:layout_below="@id/header" android:layout_above="@id/footer"/>
</RelativeLayout>
这篇关于安卓:页脚在ListView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!