Re: [android-developers] Re: Checkbox problem

2011-04-07 Thread Kostya Vasilyev
Checked change listeners are called in response to "manually" calling setChecked, not just user actions. This makes it important to call setChecked and setOnCheckedChangeListener in correct order. If your code called setChecked first, it would then call the old checked listener, which would

[android-developers] Re: Checkbox problem

2011-04-07 Thread grevenilvec
If someone has the same issue, I fixed it now. Just switched the setOnCheckedChangeListener rows with the setChecked call and now it's just working fine. Even though I don't understand that issue. ^^ Best regards Tobi On 7 Apr., 11:48, grevenilvec wrote: > I have a big Problem with my Listview a