Hi;
I had a similar issue when I implemented a listview with checkbox
items using the Efficient Adapter example. I realised that the checked
items were not being stored, so I built a static Boolean in my custom
adapter and listen to the checkbox when it is checked/unchecked and
update the Boolean array. I think you should also do something
similar; store the checked items yourself. To make sure the checked
items are checked when I scroll I check or uncheck the listview item
in the getView() method inside my custom adapter.

It might take a while, but it's certainly not hard to fix when you
think about it.

Hope to be helpful.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to