我有一个列表视图。在我想添加页脚开始之后,我设置了位置20(最后位置) 项目最后列表视图到底部。 描述: http://i.imgur.com/I5DFV.jpg
我设置了页脚高度视图。但我没有。
<?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="10000dp"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="FOOTER"
android:background="#cf9f99" />
</LinearLayout>
listview:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".demoAddListViewFooterActivity">
<ListView
android:id="@+id/list_items"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout>
活动:
LayoutInflater inflater = getLayoutInflater();
ViewGroup footer = (ViewGroup) inflater.inflate(R.layout.footer, listItem,
false);
ArrayAdapter adapter = new ArrayAdapter(this,
android.R.layout.simple_list_item_1, numbers);
listItem.addFooterView(footer,
null,
false);
listItem.setAdapter(adapter);
listItem.setSelection(20);
你能帮助我吗?