I have a list view with checkboxes and I want that when user selects any check box and closes the application, and again opens the application, the same checkboxes should be
Declare a boolean array to record the checked state (in the setOnCheckedChangeListener()) for each position item, then call setChecked() after setOnCheckedChangeListener(). Just that simple.