How do I avoid onCreate() being called when starting an Activity?
问题 I want to reload an activity from stack. I use startActivity() to start new activities. When I'm on Activity D I want to reload Activity A and not start a new Intent. I can't use startActivity() when calling A from D because it will fire onCreate() which starts a thread to fetch some data. EDIT : Updated the stack. If I use FLAG_ACTIVITY_REORDER_TO_FRONT it calls the onCreate() method again. Following is my scenario. Login Activity ̣→ Activity A → Activity B → Activity C → Activity D →