Android ListView添加头部和尾部

Posted 彬sir哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android ListView添加头部和尾部相关的知识,希望对你有一定的参考价值。

ListView添加头部和尾部:
头部布局:addHeaderView
尾部布局:addFooterView
使用java代码:

        //添加头部
        final View header = View.inflate(this, R.layout.layout_header, null);
        listView.addHeaderView(header);
        //添加尾部
        final View header2 = View.inflate(this, R.layout.layout_foot, null);
        listView.addFooterView(header2);

测试:
添加头部布局

添加尾部布局

以上是关于Android ListView添加头部和尾部的主要内容,如果未能解决你的问题,请参考以下文章

可添加头部尾部RecyclerView,很帅哦~

android listview中如何将获取来的数据添加至listview尾部

如何向php数组中头部和尾部添加元素

Android 仿首页美团悬浮头部+ListView

android新闻客户端问题

android中字母导航和PinnedHeaderListView(listview头部固定)