In my tablet application, I use many fragments (of the same class) next to eachother in one action, and in this fragment class I have:
public void onActivityCreated(Bundle savedInstanceState) { super.onActivityCreated(savedInstanceState); getLoaderManager().initLoader(this.position, null, this); }
and
public Loader<Cursor> onCreateLoader(int id, Bundle args) { Uri uri = Uri.withAppendedPath(...) return new CursorLoader(getActivity(), uri, proj, null, null, "distance"); }
Each fragment launches a new workflow for CursorLoader. How far is this scale?
source share