I have an application with checkboxes, How can i save them?
My layout is:
If you want to save simple data across sessions take a look at the documentation here: http://developer.android.com/guide/topics/data/data-storage.html specifically the shared preferences boolean storage would do the trick.
On resume you should get the values from the shared prefs and set the checkboxes using them. On pause you should get the values from the check boxes and put them into the shared prefs.
I also ran into this http://developer.android.com/reference/android/preference/CheckBoxPreference.html when looking at the HeloViews tutorial.
Just some reading around, might get round to giving you some code examples if I have time later. Hope this helps.