如何在android中创建多个列表视图

时间:2013-09-20 16:41:31

标签: android android-listview header scrollview

如何在单个活动中创建多个列表视图?每个ListView应该有一个单独的标题,允许展开或折叠其列表,滚动任何ListView都应该滚动整个活动(不是第一个ListView的滚动而第二个{{ 1}}只有一个用于两个ListView的滚动...)

listviews动态填充...

以下是类似视图的屏幕截图:

enter image description here

1 个答案:

答案 0 :(得分:2)

您所描述的是ExpandableListView

创建一个最简单的方法是将XML中的ListView更改为ExpandableListView,并使用SimpleExpandableListAdapterBaseExpandableListAdapter之类的ExpandableListAdapter实现,其工作方式类似他们的不可扩展版本。

来自Android示例API的

Here's an example,您可以使用SDK Manager下载。