I have a list with corresponding checkboxes, I would like to save the state of them so I can load the list of checked item when the app runs. How would I do this?
My onRetain looks like:
public Object onRetainNonConfigurationInstance() {
return planets;
}
With planets being the entire list.
I have read up on SharedPreferences but I can't seem to get it working :(