Please enable JavaScript.
Coggle requires JavaScript to display documents.
Activity Lifecycle (onStop() (System calls it when the activity is no…
Activity Lifecycle
onStop()
-
This may happen because the activity is being destroyed, a new activity is starting, or an existing activity is entering a Resumed state and is covering the stopped activity
-
-
onStart()
as onCreate() exits, the activity enters the Started state
-
This callback contains what amounts to the activity's final preparations for coming to the foreground and becoming interactive
-
-
onPause()
-
After finishes, the system can execute onStop() or onResume() depending on what happens
-
-