Suppose I have two activities, activity1 and activity2. I want to navigate from activity1 to activity2, get some info from activity2 and insert back it to activity1 and also I don't want to lose activity1 previous state as I left. how can I save its state ?
|
Override
|
|||
|
|
|
what you are describing is the perfect classic reason to use the this what google wrote in this method documentation:
so what you should do is: from your activity1 start activity for result, and from activity2 use the |
|||
|
|
|
You should override Please check this answer for example code Or use |
|||
|
|
|
If you want to keep your data alive only at runtime, the consider using static members. Then you can access and manipulate these members from any activites. for example:
From your second activity you can access these static variables like
Of course you can add getter/setter functions to make it safer and more elegant. If you want to store them for a longer time, the please consider using:
|
|||
|
|
|
The user performs an action in your app that starts a new activity. The current activity is stopped when the second activity is created. If the user then presses the Back button, the first activity is restarted. When your activity is stopped, the Activity object is kept resident in memory and is recalled when the activity resumes. You don’t need to re-initialize components that were created during any of the callback methods leading up to the Resumed state. The system also keeps track of the current state for each View in the layout, so if the user entered text into an EditText widget, that content is retained so you don't need to save and restore it. Note: Even if the system destroys your activity while it's stopped, it still retains the state of the View objects (such as text in an EditText) in a Bundle (a blob of key-value pairs) and restores them if the user navigates back to the same instance of the activity.
And documentation says:
In other words, put your save/restore code for non View objects in onPause() and onResume() instead of onSaveInstanceState(Bundle) and onRestoreInstanceState(Bundle).Finally I guess that you don't need to save any state if you only have View objects and if you have any other states you can use You can see more details in these pages: |
||||
|
|