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

/frameworks/base/core/java/android/os/
H A DAsyncTask.java38 * <p>AsyncTask enables proper and easy use of the UI thread. This class allows you
42 * <p>AsyncTask is designed to be a helper class around {@link Thread} and {@link Handler}
63 * <p>AsyncTask must be subclassed to be used. The subclass will override at least
69 * private class DownloadFilesTask extends AsyncTask&lt;URL, Integer, Long&gt; {
97 * <h2>AsyncTask's generic types</h2>
110 * private class MyTask extends AsyncTask&lt;Void, Void, Void&gt; { ... }
150 * <li>The AsyncTask class must be loaded on the UI thread. This is done
161 * <p>AsyncTask guarantees that all callback calls are synchronized in such a way that the following
180 public abstract class AsyncTask<Params, Progress, Result> { class
181 private static final String LOG_TAG = "AsyncTask";
303 public AsyncTask() { method in class:AsyncTask
312 public AsyncTask(@Nullable Handler handler) { method in class:AsyncTask
321 public AsyncTask(@Nullable Looper callbackLooper) { method in class:AsyncTask
[all...]

Completed in 48 milliseconds