How to create an extensible list with section headers in android

In my application, I have to include an extensible list view with section headers, I managed to do them separately, like viewing a list with headers and an extensible list, but when I need to do this, I get stuck.

I have three data archivers.
Headings ArrayList<String[]>.
ArrayList<String[]>.
ArrayList<String[]>child.

and I created separate layouts for all three. How to create this advanced list view with headers?

+5
source share
1 answer

addHeaderView() ArrayList. , TextViews View, ExpandableListViews.

+1

All Articles