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?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

There is no hard limit. However, if you are concerned about the number of threads you are starting, use AsyncTask as its doInBackground method runs in a pool of background threads. More information

link|improve this answer
Where did it state that AsyncTask employs a pool of background threads? – Pacerier Mar 4 at 5:31
@Pacerier under Using AsyncTask it says "To use it, you must subclass AsyncTask and implement the doInBackground() callback method, which runs in a pool of background threads." – Craigy Mar 4 at 14:22
thanks for the info =D – Pacerier Mar 5 at 1:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.