Lines Matching full:asynctask
2 page.tags="threads","asynctask"
95 operations is with the {@link android.os.AsyncTask}
96 class. Simply extend {@link android.os.AsyncTask} and implement the
97 {@link android.os.AsyncTask#doInBackground doInBackground()} method to perform the work.
99 {@link android.os.AsyncTask#publishProgress publishProgress()}, which invokes the
100 {@link android.os.AsyncTask#onProgressUpdate onProgressUpdate()} callback method. From your
101 implementation of {@link android.os.AsyncTask#onProgressUpdate onProgressUpdate()} (which
105 private class DownloadFilesTask extends AsyncTask<URL, Integer, Long> {
132 call {@link android.os.AsyncTask#execute execute()}:</p>
139 <p>Although it's more complicated than {@link android.os.AsyncTask}, you might want to instead