ViewPager Fragments – onPageSelected/onPageUnSelected Jan 28, 2016 / Fragments Sometimes we need to know when fragment is selected and to handle it. 1. Add interface: public interface FragmentSelection{ void onPageUnSelected(); void onPageSelected(); } 2. Implement this interface in your fragments: Keep Reading
Sequence of lifecycle methods (activity/fragment) Sep 21, 2015 / LifeCycle This flow-chart represents the sequence of methods that are invoked in Activity and Fragment while they are created and destroyed.