Android Custom ListView包含部分

时间:2013-02-18 07:20:32

标签: android android-layout

enter image description here 我想制作一个类似下面的ListView。 ListItems将分组为多个部分,不同的部分具有不同的项目数。我该如何开始?

N.B。我想要一边的节标题。我还可以提到从数据库中查询的项目,现在根据表格中的列计算部分。

3 个答案:

答案 0 :(得分:1)

我想我找到了你需要的东西。 在我给你展示的这个特定例子中,你需要为sectionItem和EntryItem实现单独的适配器。

假设您知道如何处理适配器和ListItems(使用您自己的item.xml进行自定义),this is a full fledged tutorial for how to make sections and entries.(Solution #2)

在本教程中,还给出了xml布局的代码,但是您可以为section和entryitems制作自己的自定义布局。它非常简单明了。

所以它会像这样:

Custom ListView

答案 1 :(得分:0)

答案 2 :(得分:0)

您应该使用ExpandableListView

这里还有一些例子:

Link1 Link2