I have read many questions and explanation on how to manage state in Android apps. I would like to get more clear definition based on concrete use cases ,
private ArrayList<String> mHistory = new ArrayList<String>(); 1) mHistory should be retained only in single activity ( answer:: Bundle ??) 2) mHistory should be retained in specific 3 activities in a sequence (??) 3) mHistory should be retained in specific 3 activities but NOT in a sequence ( ?? ) 4) mHistory should be retained in all activities involved in the app ( answer:: application context ??) I have added my answers so far found within the brackets. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

