How to store fragments in a stack? So once a fragment X is loaded, moving from another fragment Y to X does not "reload" it but get the fragment from some kind of saved state...
Trying to reduce the API calls here. So, that whenever a fragment is switched it does not gets data by calling API but from a previously saved state. I can get all the fragments at once on activity created but again does not want to call all the API's of different fragments at once in the beginning.