Fragment onResume() & onPause() is not called on backstack

The fragments onResume() or onPause() will be called only when the Activities onResume() or onPause() is called.
They are tightly coupled to the Activity.

Read the Handling the Fragment Lifecycle section of this article.

Leave a Comment