Unchecking the checked checkboxes while scolling the list in Android?
My problem is list of checkboxes 开发者_Go百科are there which are checked in gridview , while scrolling the list, those checked one is turned to unchecked one.
Shiva,
If you are using custom Adapter for your list,then you can implement an ArrayList to keep track of the CheckBox State. And in your getView() function of Adapter, set your CheckBox true/false according to the ArrayList. This is a starting point for your problem. I hope you can figure out the rest. If you still have any problem, you can ask.
精彩评论