android Programming Glossary: currenttasks
Save ArrayList to SharedPreferences http://stackoverflow.com/questions/7057845/save-arraylist-to-sharedpreferences preference and then store the serialized ArrayList using the putString method public void addTask Task t if null currentTasks currentTasks new ArrayList task currentTasks.add t save the task list to preference SharedPreferences prefs getSharedPreferences.. and then store the serialized ArrayList using the putString method public void addTask Task t if null currentTasks currentTasks new ArrayList task currentTasks.add t save the task list to preference SharedPreferences prefs getSharedPreferences SHARED_PREFS_FILE.. ArrayList using the putString method public void addTask Task t if null currentTasks currentTasks new ArrayList task currentTasks.add t save the task list to preference SharedPreferences prefs getSharedPreferences SHARED_PREFS_FILE Context.MODE_PRIVATE..
|