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:
(more…)
