I use
SimpleExpandableListAdapter
in my
ExpandableListActivity
When user click th
For always expanded groups, I extend SimpleExpandableListAdapter and set the group to be expanded in the getGroupView method:
@Override
public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
View v = super.getGroupView(groupPosition, isExpanded, convertView, parent);
ExpandableListView eLV = (ExpandableListView) parent;
eLV.expandGroup(groupPosition);
return v;
}