Multiple choice technology platforms and products

The visible lifetime of an activity happens between a call to onStart() until a corresponding call to onPause(). Choose the right answer.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The visible lifetime of an activity extends from onStart() to the corresponding onStop() call, not onPause(). The activity is visible to the user in the onStart()-onStop() window, while onPause() indicates partial obscuration (activity is still visible but not in focus). The visible lifecycle can repeat multiple times as the user navigates away and back.