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

/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
H A DAsyncTask.java43 * https://android.googlesource.com/platform/frameworks/base/+/jb-release/core/java/android/os/AsyncTask.java
48 * There are 3 changes in this copy of AsyncTask:
55 * <p>AsyncTask enables proper and easy use of the UI thread. This class allows to
59 * <p>AsyncTask is designed to be a helper class around {@link Thread} and {@link android.os.Handler}
80 * <p>AsyncTask must be subclassed to be used. The subclass will override at least
86 * private class DownloadFilesTask extends AsyncTask&lt;URL, Integer, Long&gt; {
114 * <h2>AsyncTask's generic types</h2>
127 * private class MyTask extends AsyncTask&lt;Void, Void, Void&gt; { ... }
167 * <li>The AsyncTask class must be loaded on the UI thread. This is done
178 * <p>AsyncTask guarantee
197 public abstract class AsyncTask<Params, Progress, Result> { class
306 public AsyncTask() { method in class:AsyncTask
[all...]

Completed in 363 milliseconds