Activity Lifecycle

ANDROID › Lifecycle

Drills the ordered create/start/resume/pause/stop/destroy callbacks, state saving, and multi-window and launch-mode lifecycle effects.

Lifecycle is the single most-asked Android fundamentals topic; interviewers probe the exact callback ordering and the subtle cases that reveal whether you truly understand activity state. Expect to reconstruct callback sequences for rotation, Back vs Home, process death, and multi-window, and to justify what work belongs in each callback. Mistakes here, such as doing heavy saves in onPause or assuming onSaveInstanceState runs on Back, are common red flags.

What this covers

Study this topic

Further reading