Skip to content

Instantly share code, notes, and snippets.

@nesquena
Last active January 11, 2024 16:42
Show Gist options
  • Save nesquena/c715c9b22fb873b1d259 to your computer and use it in GitHub Desktop.
Save nesquena/c715c9b22fb873b1d259 to your computer and use it in GitHub Desktop.
Android SmartFragmentStatePagerAdapter that intelligently caches the Fragments in the ViewPager
/*
Extension of FragmentStatePagerAdapter which intelligently caches
all active fragments and manages the fragment lifecycles.
Usage involves extending from SmartFragmentStatePagerAdapter as you would any other PagerAdapter.
*/
public abstract class SmartFragmentStatePagerAdapter extends FragmentStatePagerAdapter {
// Sparse array to keep track of registered fragments in memory
private SparseArray<Fragment> registeredFragments = new SparseArray<Fragment>();
public SmartFragmentStatePagerAdapter(FragmentManager fragmentManager) {
super(fragmentManager);
}
// Register the fragment when the item is instantiated
@Override
public Object instantiateItem(ViewGroup container, int position) {
Fragment fragment = (Fragment) super.instantiateItem(container, position);
registeredFragments.put(position, fragment);
return fragment;
}
// Unregister when the item is inactive
@Override
public void destroyItem(ViewGroup container, int position, Object object) {
registeredFragments.remove(position);
super.destroyItem(container, position, object);
}
// Returns the fragment for the position (if instantiated)
public Fragment getRegisteredFragment(int position) {
return registeredFragments.get(position);
}
}
@q00u
Copy link

q00u commented Aug 4, 2018

I'm still having trouble getting this to work after rotation. Is there an example project?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment