I'm displaying entries from SQLite database in Expandable ListView and everything is working correctly but, I wanted to add in a checkbox right next to all children. Every time I check a checkbox and then scroll down or contract the checkbox which I had checked it doesn't save the state of the checkbox. I know that the list is recycled whenever I scroll down and expand the groups and so forth. How can I save the state of every checkbox (by every child)? I have a class which extends CursorTreeAdapter and there is no "childPosition" in the methods. What do I need to do in order to save the state?

Thanks in advance.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

you can have an array of boolean flags with same size as sum of list elements and set and get the checked value from this array for any component.

link|improve this answer
Thanks for replying. In which method would I call this array to set a checkbox to checked if I scrolled back up? Also, could you provide some sample code? – user990230 Jan 9 at 5:31
you need to use this array in getChildView method, it would be called back whenever you will scroll back or set the adapter, I haven't any sample right now, but you can search and follow the links to customize expandable list view, and you will get enough help. – jeet Jan 9 at 5:42
feedback

Your Answer

 
or
required, but never shown

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