How to forcibly collapse the list in ExpandableListView ? For example, I need to collapse the list after the user has clicked on the child element.

    1 answer 1

    Perhaps so:

     mExpandableListView.collapseGroup(mGroupPosition); 

    Or if it doesn't work, see here.

    • Cyril, thanks, works! - Lucky_girl