xml文件:
<ListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:cacheColorHint="#00000000"
android:divider="@drawable/listview_devider">
</ListView>
代码方面只要添加一个HeaderView/FooterView即可,这里用viewStub:
ViewStub viewStub= new ViewStub(this);
mListView.addHeaderView(viewStub);
mListView.setAdapter(mListAdapter);