Re: [android-developers] Lost Checked state of check box in ListView while scrolling

2010-10-07 Thread Rocky
thanks for replay, but how to handle it, please provide the logic or code. --RKJ On Thu, Oct 7, 2010 at 11:06 AM, Kumar Bibek coomar@gmail.com wrote: Since the ListView recylces the convertViews, you will have to keep track of the items which are selected when they go off the screen.

[android-developers] Lost Checked state of check box in ListView while scrolling

2010-10-06 Thread RKJ (Android developer)
Hi, I'm facing problem in scrolling. I've 20-25 items in my List, if i checked first check box, scroll down, then come up, my checked status lost (becomes unchecked), in cursor adaptor. If i use base adaptor problem is resolved but major issue with base adaptor is performance, if my list goes

Re: [android-developers] Lost Checked state of check box in ListView while scrolling

2010-10-06 Thread Kumar Bibek
Since the ListView recylces the convertViews, you will have to keep track of the items which are selected when they go off the screen. This happens when you use convert views for lists and recycle it. On Thu, Oct 7, 2010 at 11:04 AM, RKJ (Android developer) rkjhaw1...@gmail.com wrote: Hi,