I am writing an app where I get all the data from the rest call and display all the data in a custom component list(based on Linear Layout) which is added to a LinearLayout
. I write this code in onCreate
of the activity.
The problem is when I switch activity using startActivity
, and come back to the calling activity (using startActivity
) then onCreate
is called again. I see onPause
, onStop
called when I call other activity.
Is there any way that I can save the application's state?