In my tablet app I use many Fragments (of one class) next to eachother in one activity, 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 starts a new worker thread for a CursorLoader. How far does this scale?