In my application i have three activity. In my third activity if i click home button it comes to the android home screen(application still run in background i noticed by using Log statement). If i relaunch application then it start from first activity. How can i load it from third activity? Anyone can give me your suggestion….
Thanks in advance….
if you click home button, the activity execute the method: onPause() -> onStop();
when you relaunch application, the activity will execute the method: onRestart() -> onStart() -> onResume() -> ….
control the activity through these methods.
i wish it would help you.