我已经搜索过,但不幸的是没有找到真正的解决方案。我在列表视图中添加了一个页脚:
View footer = getLayoutInflater().inflate(R.layout.listfooter, null);
listview.addFooterView(footer);
页脚的 xml 如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/footer"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="#FFFFFFFF"
android:orientation="vertical"
android:layout_alignParentBottom="true"
android:background="#ee222222"
>
<TextView
android:id="@+id/info"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Test Test Test"
android:layout_alignParentBottom="true"
android:layout_gravity="center_vertical"
/>
</LinearLayout>
它确实仅将页脚显示为单行
我动态更改列表中的行数,但如果其中没有足够的项目,我希望页脚始终填充列表视图的其余部分。
我怎样才能做到这一点?
编辑:我添加了一张图片,左边是现在的样子,右边的 2 是我想要的。