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
39 * <p>AsyncTask is designed to be a helper class around {@link Thread} and {@link Handler}
60 * <p>AsyncTask must be subclassed to be used. The subclass will override at least
66 * private class DownloadFilesTask extends AsyncTask&lt;URL, Integer, Long&gt; {
94 * <h2>AsyncTask's generic types</h2>
107 * private class MyTask extends AsyncTask&lt;Void, Void, Void&gt; { ... }
147 * <li>The AsyncTask class must be loaded on the UI thread. This is done
158 * <p>AsyncTask guarantees that all callback calls are synchronized in such a way that the following
177 public abstract class AsyncTask<Params, Progress, Result> { class
178 private static final String LOG_TAG = "AsyncTask";
280 public AsyncTask() { method in class:AsyncTask
[all...]

Completed in 995 milliseconds