I have a FragmentActivity with a ViewPager in it - this ViewPager contains three ListViews - each destined to have their own unique adapters (and unique data sets).
I would like to use AsyncTaskLoader to populate these adapters, but ONLY when a given view is selected in the ViewPager.
Is it required to init a loader in the activity's onCreate method? (below code)
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_foo);
getSupportLoaderManager().initLoader(0, null, this);
getSupportLoaderManager().initLoader(1, null, this);
getSupportLoaderManager().initLoader(2, null, this);
}
Or is it okay to call call initLoader(...) interactively, such as the result of a listener for OnPageChangeListener.onPageSelected ?
mPager.setOnPageChangeListener(new OnPageChangeListener() {
@Override
public void onPageSelected(int newPage) {
getSupportLoaderManager().initLoader(newPage, null, this);
}
...
}
I want to avoid having to perform potentially 3 time consuming loaders up front if the user may only ever look at the first view in the pager.
EDIT: Or would it be a better design to have the ViewPager use a Fragment for each view, and each fragment would be responsible for managing its own loader?