Searched defs:AsyncTask (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/os/
H A DAsyncTask.java35 * <p>AsyncTask enables proper and easy use of the UI thread. This class allows to
53 * <p>AsyncTask must be subclassed to be used. The subclass will override at least
59 * private class DownloadFilesTask extends AsyncTask&lt;URL, Integer, Long&gt; {
85 * <h2>AsyncTask's generic types</h2>
98 * private class MyTask extends AsyncTask&lt;Void, Void, Void&gt; { ... }
147 * <p>AsyncTask guarantees that all callback calls are synchronized in such a way that the following
156 public abstract class AsyncTask<Params, Progress, Result> { class
157 private static final String LOG_TAG = "AsyncTask";
167 return new Thread(r, "AsyncTask #" + mCount.getAndIncrement());
240 * Indicates that {@link AsyncTask#onPostExecut
258 public AsyncTask() { method in class:AsyncTask
[all...]

Completed in 49 milliseconds