I would like to expand all children while the expandable list view is populated. Currently my code looks like this:
ExpandableListView listView = (Expandable
I have tried the responses listed but i found that i can use the getGroupCount() method to get the number of groups.
Using this method i can iterate and expand every group of my ExpandableListView
for (int i = 0; i < myExpandableListView.getExpandableListAdapter().getGroupCount(); i++) {
//Expand group
myExpandableListView.expandGroup(i);
}