When I expand a new group, can I collapse the last one expanded?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 25 down vote accepted

Try putting this in your ExpandableListAdapter, accordion is a reference to the ExpandableListView itself.

    @Override
    public void onGroupExpanded(int groupPosition){
        //collapse the old expanded group, if not the same
        //as new group to expand
        if(groupPosition != lastExpandedGroupPosition){
            accordion.collapseGroup(lastExpandedGroupPosition);
        }

        super.onGroupExpanded(groupPosition);           
        lastExpandedGroupPosition = groupPosition;
    }
link|improve this answer
1  
Wow man, spot on! :) THANK YOU VERY MUCH! :D – duberton Nov 30 '10 at 16:07
1  
No problem. Did this for an app a while back. Glad it could help someone else. – danh32 Nov 30 '10 at 16:48
There is a problem with your solution: the new expanded group will be scrolled as far as the height of the last group (which is closed). But thanks anyway. – Anh Tuan Feb 27 at 5:00
works like a charm. tested on android v. 4, 3.2 and 3. – Ege Özcan Feb 28 at 16:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.