HomeSort by relevance Sort by last modified time
    Searched defs:AsyncTask (Results 1 - 25 of 30) sorted by null

1 2

  /development/samples/DeviceAdminWhitelistedAccount/src/com/example/android/app/admin/whitelistedaccount/
MyMain.java 20 import android.os.AsyncTask;
31 new AsyncTask<Void, Void, Boolean>() {
  /cts/hostsidetests/net/app2/src/com/android/cts/net/hostside/app2/
Common.java 21 import android.os.AsyncTask;
84 AsyncTask.execute(() -> {
  /cts/hostsidetests/statsd/apps/statsdapp/src/com/android/server/cts/device/statsd/
VideoPlayerActivity.java 21 import android.os.AsyncTask;
73 new AsyncTask<Void, Void, Void>() {
StatsdCtsForegroundActivity.java 28 import android.os.AsyncTask;
92 new AsyncTask<Void, Void, Void>() {
  /development/samples/MultiDisplay/src/com/example/android/multidisplay/launcher/
AppListViewModel.java 26 import android.os.AsyncTask;
70 new AsyncTask<Void, Void, List<AppEntry>>() {
PinnedAppListViewModel.java 28 import android.os.AsyncTask;
82 new AsyncTask<Void, Void, List<AppEntry>>() {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
TvInputDiscoveryTestActivity.java 24 import android.os.AsyncTask;
197 new AsyncTask<Void, Void, Boolean>() {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/usb/accessory/
UsbAccessoryTestActivity.java 28 import android.os.AsyncTask;
91 (new AsyncTask<Void, Void, Throwable>() {
  /developers/build/prebuilts/gradle/AppShortcuts/app/src/main/java/com/example/android/appshortcuts/
Main.java 22 import android.os.AsyncTask;
109 new AsyncTask<Void, Void, Void>() {
ShortcutHelper.java 26 import android.os.AsyncTask;
116 new AsyncTask<Void, Void, Void>() {
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
AsyncTask.java 43 * 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 guarantees that all callback calls are synchronized in such a way that the followin
    [all...]
  /developers/build/prebuilts/gradle/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/
PhoneMainActivity.java 28 import android.os.AsyncTask;
93 * An {@link android.os.AsyncTask} that is responsible for getting a list of {@link
99 new AsyncTask<Calendar, Void, Void>() {
  /developers/samples/android/system/AppShortcuts/app/src/main/java/com/example/android/appshortcuts/
Main.java 22 import android.os.AsyncTask;
109 new AsyncTask<Void, Void, Void>() {
ShortcutHelper.java 26 import android.os.AsyncTask;
116 new AsyncTask<Void, Void, Void>() {
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
AsyncTask.java 43 * 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 guarantees that all callback calls are synchronized in such a way that the followin
    [all...]
  /developers/samples/android/wearable/wear/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/
PhoneMainActivity.java 20 import android.os.AsyncTask;
93 * An {@link android.os.AsyncTask} that is responsible for getting a list of {@link
99 new AsyncTask<Calendar, Void, Void>() {
  /development/samples/browseable/AppShortcuts/src/com.example.android.appshortcuts/
Main.java 22 import android.os.AsyncTask;
109 new AsyncTask<Void, Void, Void>() {
ShortcutHelper.java 26 import android.os.AsyncTask;
116 new AsyncTask<Void, Void, Void>() {
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
AsyncTask.java 43 * 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 guarantees that all callback calls are synchronized in such a way that the followin
    [all...]
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
AlbumArtCache.java 20 import android.os.AsyncTask;
91 LogHelper.d(TAG, "getOrFetch: starting asynctask to fetch ", artUrl);
93 new AsyncTask<Void, Void, Bitmap[]>() {
  /development/samples/browseable/SpeedTracker/Application/src/com.example.android.wearable.speedtracker/
PhoneMainActivity.java 28 import android.os.AsyncTask;
93 * An {@link android.os.AsyncTask} that is responsible for getting a list of {@link
99 new AsyncTask<Calendar, Void, Void>() {
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentFragment.java 28 import android.os.AsyncTask;
297 /** Share the currently selected photo using an AsyncTask to compress the image
317 // {@link AsyncTask} class, thus avoiding the possibility of stalling the main (UI) thread.
321 new AsyncTask<Void, Void, Boolean>() {
  /development/samples/ShortcutSample/src/com/example/android/shortcutsample/
Main.java 25 import android.os.AsyncTask;
150 new AsyncTask<Void, Void, ShortcutInfo>() {
164 new AsyncTask<Void, Void, Void>() {
ShortcutHelper.java 26 import android.os.AsyncTask;
118 new AsyncTask<Void, Void, Void>() {
  /cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
MyDocumentsProvider.java 27 import android.os.AsyncTask;
391 new AsyncTask<Void, Void, Void>() {
407 }.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR);
410 new AsyncTask<Void, Void, Void>() {
430 }.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR);

Completed in 1917 milliseconds

1 2