I use
SimpleExpandableListAdapter
in my
ExpandableListActivity
When user click th
I was browsing around trying to find a solution to my own ExpandableListView problem. Anyway, add my 2 cents to the answer provided by adstro.
The concept is simple:
First call the getGroupCount() function of the ExpandableList Adapter to find the number of groups
Then, loop through the groups and call the expandGroup(int GroupPos) function of the ExpandableList View to expand each group.
The above codes should be put inside onCreate() and also the onResume() to cater for both the first creation and the return to the activity subsequently after creation.