The application has 5 buttons below (its own implementation of the tabs), each of them adds its own fragment to the activation container with this code:
getSupportFragmentManager() .beginTransaction() .setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN) .add(R.id.fragmentContainer, new SomeFragment()) .commit();
When the user just launched the application and wants to go to the fragment with Google map, for example, the application is slow and after a second or half the fragment is shown.
What could be the reason ?