HomeSort by relevance Sort by last modified time
    Searched refs:AsyncTask (Results 76 - 100 of 377) sorted by null

1 2 34 5 6 7 8 91011>>

  /developers/build/prebuilts/gradle/SwipeRefreshLayoutBasic/Application/src/main/java/com/example/android/swiperefreshlayoutbasic/
SwipeRefreshLayoutBasicFragment.java 22 import android.os.AsyncTask;
180 * Execute the background task, which uses {@link android.os.AsyncTask} to load the data.
188 * When the AsyncTask finishes, it calls onRefreshComplete(), which updates the data in the
206 * Dummy {@link AsyncTask} which simulates a long running task to fetch new cheeses.
208 private class DummyBackgroundTask extends AsyncTask<Void, Void, List<String>> {
  /developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/src/main/java/com/example/android/swiperefreshlistfragment/
SwipeRefreshListFragmentFragment.java 22 import android.os.AsyncTask;
176 * Execute the background task, which uses {@link android.os.AsyncTask} to load the data.
184 * When the AsyncTask finishes, it calls onRefreshComplete(), which updates the data in the
203 * Dummy {@link AsyncTask} which simulates a long running task to fetch new cheeses.
205 private class DummyBackgroundTask extends AsyncTask<Void, Void, List<String>> {
  /developers/build/prebuilts/gradle/SwipeRefreshMultipleViews/Application/src/main/java/com/example/android/swiperefreshmultipleviews/
SwipeRefreshMultipleViewsFragment.java 22 import android.os.AsyncTask;
202 * Execute the background task, which uses {@link android.os.AsyncTask} to load the data.
210 * When the AsyncTask finishes, it calls onRefreshComplete(), which updates the data in the
228 * Dummy {@link AsyncTask} which simulates a long running task to fetch new cheeses.
230 private class DummyBackgroundTask extends AsyncTask<Void, Void, List<String>> {
  /developers/samples/android/connectivity/network/NetworkConnect/Application/src/main/java/com/example/android/networkconnect/
MainActivity.java 19 import android.os.AsyncTask;
41 * HTML. It uses AsyncTask to do the fetch on a background thread. To establish
93 * Implementation of AsyncTask, to fetch the data in the background away from
96 private class DownloadTask extends AsyncTask<String, Void, String> {
  /developers/samples/android/media/MediaRecorder/Application/src/main/java/com/example/android/mediarecorder/
MainActivity.java 24 import android.os.AsyncTask;
200 class MediaPrepareTask extends AsyncTask<Void, Void, Boolean> {
  /developers/samples/android/renderScript/BasicRenderScript/Application/src/main/java/com/example/android/basicrenderscript/
MainActivity.java 22 import android.os.AsyncTask;
116 * In the AsyncTask, it invokes RenderScript intrinsics to do a filtering.
117 * After the filtering is done, an operation blocks at Allication.copyTo() in AsyncTask thread.
120 private class RenderScriptTask extends AsyncTask<Float, Integer, Integer> {
  /developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshLayoutBasic/Application/src/main/java/com/example/android/swiperefreshlayoutbasic/
SwipeRefreshLayoutBasicFragment.java 22 import android.os.AsyncTask;
180 * Execute the background task, which uses {@link android.os.AsyncTask} to load the data.
188 * When the AsyncTask finishes, it calls onRefreshComplete(), which updates the data in the
206 * Dummy {@link AsyncTask} which simulates a long running task to fetch new cheeses.
208 private class DummyBackgroundTask extends AsyncTask<Void, Void, List<String>> {
  /developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshListFragment/Application/src/main/java/com/example/android/swiperefreshlistfragment/
SwipeRefreshListFragmentFragment.java 22 import android.os.AsyncTask;
176 * Execute the background task, which uses {@link android.os.AsyncTask} to load the data.
184 * When the AsyncTask finishes, it calls onRefreshComplete(), which updates the data in the
203 * Dummy {@link AsyncTask} which simulates a long running task to fetch new cheeses.
205 private class DummyBackgroundTask extends AsyncTask<Void, Void, List<String>> {
  /developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshMultipleViews/Application/src/main/java/com/example/android/swiperefreshmultipleviews/
SwipeRefreshMultipleViewsFragment.java 22 import android.os.AsyncTask;
202 * Execute the background task, which uses {@link android.os.AsyncTask} to load the data.
210 * When the AsyncTask finishes, it calls onRefreshComplete(), which updates the data in the
228 * Dummy {@link AsyncTask} which simulates a long running task to fetch new cheeses.
230 private class DummyBackgroundTask extends AsyncTask<Void, Void, List<String>> {
  /developers/samples/android/wearable/wear/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/
PhoneMainActivity.java 28 import android.os.AsyncTask;
89 * An {@link android.os.AsyncTask} that is responsible for getting a list of {@link
95 new AsyncTask<Calendar, Void, Void>() {
  /development/samples/browseable/BasicRenderScript/src/com.example.android.basicrenderscript/
MainActivity.java 22 import android.os.AsyncTask;
116 * In the AsyncTask, it invokes RenderScript intrinsics to do a filtering.
117 * After the filtering is done, an operation blocks at Allication.copyTo() in AsyncTask thread.
120 private class RenderScriptTask extends AsyncTask<Float, Integer, Integer> {
  /development/samples/browseable/MediaRecorder/src/com.example.android.mediarecorder/
MainActivity.java 24 import android.os.AsyncTask;
200 class MediaPrepareTask extends AsyncTask<Void, Void, Boolean> {
  /development/samples/browseable/NetworkConnect/src/com.example.android.networkconnect/
MainActivity.java 19 import android.os.AsyncTask;
41 * HTML. It uses AsyncTask to do the fetch on a background thread. To establish
93 * Implementation of AsyncTask, to fetch the data in the background away from
96 private class DownloadTask extends AsyncTask<String, Void, String> {
  /development/samples/browseable/SpeedTracker/Application/src/com.example.android.wearable.speedtracker/
PhoneMainActivity.java 28 import android.os.AsyncTask;
89 * An {@link android.os.AsyncTask} that is responsible for getting a list of {@link
95 new AsyncTask<Calendar, Void, Void>() {
  /development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.swiperefreshlayoutbasic/
SwipeRefreshLayoutBasicFragment.java 22 import android.os.AsyncTask;
180 * Execute the background task, which uses {@link android.os.AsyncTask} to load the data.
188 * When the AsyncTask finishes, it calls onRefreshComplete(), which updates the data in the
206 * Dummy {@link AsyncTask} which simulates a long running task to fetch new cheeses.
208 private class DummyBackgroundTask extends AsyncTask<Void, Void, List<String>> {
  /development/samples/browseable/SwipeRefreshListFragment/src/com.example.android.swiperefreshlistfragment/
SwipeRefreshListFragmentFragment.java 22 import android.os.AsyncTask;
176 * Execute the background task, which uses {@link android.os.AsyncTask} to load the data.
184 * When the AsyncTask finishes, it calls onRefreshComplete(), which updates the data in the
203 * Dummy {@link AsyncTask} which simulates a long running task to fetch new cheeses.
205 private class DummyBackgroundTask extends AsyncTask<Void, Void, List<String>> {
  /development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.swiperefreshmultipleviews/
SwipeRefreshMultipleViewsFragment.java 22 import android.os.AsyncTask;
202 * Execute the background task, which uses {@link android.os.AsyncTask} to load the data.
210 * When the AsyncTask finishes, it calls onRefreshComplete(), which updates the data in the
228 * Dummy {@link AsyncTask} which simulates a long running task to fetch new cheeses.
230 private class DummyBackgroundTask extends AsyncTask<Void, Void, List<String>> {
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/crypto/
CipherFactory.java 7 import android.os.AsyncTask;
199 AsyncTask.THREAD_POOL_EXECUTOR.execute(mDataGenerator);
  /external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/
MockSyncContentResolverDelegate.java 11 import android.os.AsyncTask;
191 new AsyncTask<Void, Void, Void>() {
  /frameworks/base/core/java/com/android/internal/view/
RotationPolicy.java 25 import android.os.AsyncTask;
137 AsyncTask.execute(new Runnable() {
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
AsyncRunner.java 20 import android.os.AsyncTask;
43 private class AsyncRunnerTask extends AsyncTask<SyncRunner, Void, RunnerResult> {
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
CreateDirectoryFragment.java 31 import android.os.AsyncTask;
85 private class CreateDirectoryTask extends AsyncTask<Void, Void, DocumentInfo> {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
SecureCameraLaunchManager.java 24 import android.os.AsyncTask;
173 AsyncTask.execute(new Runnable() {
  /packages/apps/Camera2/src/com/android/camera/data/
FixedFirstDataAdapter.java 21 import android.os.AsyncTask;
206 public AsyncTask updateMetadata(int dataId) {
FixedLastDataAdapter.java 21 import android.os.AsyncTask;
169 public AsyncTask updateMetadata(int dataId) {

Completed in 1111 milliseconds

1 2 34 5 6 7 8 91011>>