I have this huge data in 7 Navigation Tabs
. My problem is all the Tabs load simultaneously instead of one Tab at a time.
I tried using onHiddenChanged(boolean isHidden)
but its not been called.
Asked
Active
Viewed 516 times
2

mihirjoshi
- 12,161
- 7
- 47
- 78
-
this may help you: http://stackoverflow.com/a/11075663/1400119 – trickster77777 Nov 22 '13 at 04:55
1 Answers
2
@Override
public void setUserVisibleHint(boolean isVisibleToUser) {
// TODO Auto-generated method stub
super.setUserVisibleHint(isVisibleToUser);
if(isVisibleToUser) {
To do what is required to load data
} else {
Do nothing
}
}
This method will gets called when u select each tab. Override this method in every tab fragment activity.

Sandip Lawate
- 456
- 3
- 11