I tried to use onStart()
but it doesn't invoke with ViewPager
in some cases, especially when going to fragment from nearest tab on tablayout.
What can be problem?
Is there any other events that invoke explicitly?
I tried to use onStart()
but it doesn't invoke with ViewPager
in some cases, especially when going to fragment from nearest tab on tablayout.
What can be problem?
Is there any other events that invoke explicitly?
Fragment#onResume()
will be called when the fragment is visible to the user and actively running. This is generally tied to Activity.onResume of the containing Activity's lifecycle.