Forked from nesquena/SmartFragmentStatePagerAdapter.java
Created
December 9, 2016 04:57
-
-
Save baleen37/85253b3a80d7ef5fef40ac1169cb1af4 to your computer and use it in GitHub Desktop.
Android SmartFragmentStatePagerAdapter that intelligently caches the Fragments in the ViewPager
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment