I am using expandableListView for UI design, so I am wondering for Android expandable listview, is there a way to allow only one list item expanded, i.e. when you click and expand an item, all other items are collapsed automatically.
Thanks
|
I am using expandableListView for UI design, so I am wondering for Android expandable listview, is there a way to allow only one list item expanded, i.e. when you click and expand an item, all other items are collapsed automatically. Thanks
| |||||||||
feedback
|
|
When you click one item you could loop through the rest and collapse each one except for the one you just clicked...
| ||||
|
feedback
|
|
You could do as kieran suggested, or if you only have one open at a time, you could just keep track of which one you last clicked. You could do this by declaring I would give a code example, but I'm on my mobile. Sorry. But I just personally prefer the lastclicked method of doing it than using a for loop. It seems more efficient. | |||
|
feedback
|