Is it possible to only expand one child of an ExpandableListView at a time, thus opening a second child would close the previously opened child?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 5 down vote accepted

I'm not aware of any automatic methods for this, but you can implement ExpandableListView.OnGroupClickListener, in where you run collapseGroup() for all list groups except the one being clicked. This will do what you want.

link|improve this answer
4  
Better yet, use the ExpandableListView.OnGroupExpandListener class. Also, you can keep track of the last expanded group, and collapse it when the next one is expanded (to prevent calling collapseGroup() on an arbitrarily large number of list items. – Jason LeBrun Oct 22 '11 at 22:04
Good point, Jason. Didn't think of that. – bos Oct 22 '11 at 22:08
Thanks guys, I will try out your suggestions tonight! – esteve Oct 23 '11 at 0:47
3  
Just wanted to follow up that this suggestion worked perfectly, I just keep track of the last expanded group and close it before expanding the next group to be expanded! Thanks bos & Jason! – esteve Oct 24 '11 at 5:35
feedback

Your Answer

 
or
required, but never shown

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