My application has one activity and 5 fragments. When user clicks on tab “Fragment1”, it loads the data from remote place and upload it on ListView. “Fragment2” also doing same job. But when user clicks back on “Fragment1” it again starts loading, instead of loading
How can I restore the fragment from last loaded state?
It might help if you post some code. Meanwhile, my sneaky suspicion is that instead of reusing the same instance, your
FragmentPagerAdapteris creating a new instance every time itsgetItem()is called.