Reputation: 19388
I need a clue how to collapse (or find IDs for) all parent items in ExpandableListView.
Thanks,
Aleksander
Upvotes: 17
Views: 10817
Reputation: 68474
int count = mListAdapter.getGroupCount();
for (int i = 0; i <count ; i++)
mListView.collapseGroup(i);
Upvotes: 39