I have a FragmentPagerAdapter in an activity that manages 4 fragments, all is working fine, but the onPause, and onDestroyView events of each fragment, are not called immediatly after the new fragment is loaded ie :
FragmentA --> FragmentB --> FragmentC --> FragmentD
the onPause/onDestroyView event of FragmentA is called when I passed to FragmentC, globally these events are called after 2 steps.
Am I missing anything ?
Thanks.