[android-developers] Re: [SOLVED] Items Randomly Shift in ListView

2011-03-04 Thread Robert
I actually have another question about an understanding of a particular behavior. I found that whenever I clicked on a CheckBox, while other items are being added to the list, it seems to move to other items in the list. Sometimes it would even check off another item's CheckBox at the same time

[android-developers] Re: [SOLVED] Items Randomly Shift in ListView

2011-03-04 Thread Streets Of Boston
When you call 'setChecked', the OnCheckChangedListener is called. Depending on the OnCheckChangedListener's implementation, the setChecked could have some side-effects. These may be the problems you have seen. -- You received this message because you are subscribed to the Google Groups "Android

Re: [android-developers] Re: [SOLVED] Items Randomly Shift in ListView

2011-03-04 Thread Robert Louden
Ah, ok. Thanks again Streets. On Fri, Mar 4, 2011 at 5:24 PM, Streets Of Boston wrote: > When you call 'setChecked', the OnCheckChangedListener is called. Depending > on the OnCheckChangedListener's implementation, the setChecked could have > some side-effects. These may be the problems you have