Question

Which of the following statements is false?
a. When a Fragment is attached to an Activity, its lifecycle is tied to that of its parent Activity.
b. There are six Activity lifecycle methods that have corresponding Fragment lifecycle methodsonCreate, onStart, onResume, onPause, onStop and onDestroy.
c. When the system calls any of the methods onCreate, onStart, onResume, onPause, onStop and onDestroy on an Activity, it will also call these corresponding methods (and potentially other Fragment lifecycle methods) on only the Activity's attached primary Fragment.
d. An Activity's onPause method is called when another Activity receives the focus, which pauses the one that loses the focus and sends it to the background.

Answer

This answer is hidden. It contains 360 characters.