Question

Throughout its life, an Activity can be in one of several statesactive (i.e., running), paused or stopped. The Activity transitions between these states in response to various events. Which of the following statements is false?
a. An active Activity is visible on the screen and "has the focus"that is, it's in the foreground. This is the Activity the user is interacting with.
b. A paused Activity is visible on the screen but does not have the focussuch as when an alert dialog is displayed.
c. A stopped activity is not visible on the screen and is likely to be killed by the system when its memory is needed. An Activity is stopped when another Activity becomes active.
d. As an Activity transitions among these states, the Android runtime calls various Activity lifecycle methodsall of which are defined in the Lifecycle class.

Answer

This answer is hidden. It contains 203 characters.