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添加头部和尾部的主要内容,如果未能解决你的问题,请参考以下文章