HomeSort by relevance Sort by last modified time
    Searched refs:bitmapWorkerTask (Results 1 - 6 of 6) sorted by null

  /packages/apps/Car/Dialer/src/com/android/car/dialer/
BitmapWorkerTask.java 30 public class BitmapWorkerTask extends AsyncTask<Void, Void, Bitmap> {
36 public BitmapWorkerTask(
62 final BitmapWorkerTask bitmapWorkerTask = (BitmapWorkerTask) imageView.getTag();
63 if (this == bitmapWorkerTask) {
76 final BitmapWorkerTask task =
77 new BitmapWorkerTask(contentResolver, imageView, number, runnable);
85 final BitmapWorkerTask bitmapWorkerTask = (BitmapWorkerTask) imageView.getTag()
    [all...]
  /packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
ContactBitmapWorker.java 105 final ContactBitmapWorker bitmapWorkerTask = (ContactBitmapWorker) imageView.getTag();
106 if (bitmapWorkerTask != null) {
107 if (bitmapWorkerTask.mNumber != number) {
108 bitmapWorkerTask.cancel(true);
  /development/samples/training/ContactsList/src/com/example/android/contactslist/util/
ImageLoader.java 88 final BitmapWorkerTask task = new BitmapWorkerTask(imageView);
138 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
139 if (bitmapWorkerTask != null) {
140 bitmapWorkerTask.cancel(true);
142 final Object bitmapData = bitmapWorkerTask.data;
155 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
157 if (bitmapWorkerTask != null)
    [all...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageWorker.java 95 final BitmapWorkerTask task = new BitmapWorkerTask(data, imageView, listener);
202 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
203 if (bitmapWorkerTask != null) {
204 bitmapWorkerTask.cancel(true);
206 final Object bitmapData = bitmapWorkerTask.mData;
220 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
222 if (bitmapWorkerTask != null)
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageWorker.java 95 final BitmapWorkerTask task = new BitmapWorkerTask(data, imageView, listener);
202 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
203 if (bitmapWorkerTask != null) {
204 bitmapWorkerTask.cancel(true);
206 final Object bitmapData = bitmapWorkerTask.mData;
220 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
222 if (bitmapWorkerTask != null)
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageWorker.java 95 final BitmapWorkerTask task = new BitmapWorkerTask(data, imageView, listener);
202 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
203 if (bitmapWorkerTask != null) {
204 bitmapWorkerTask.cancel(true);
206 final Object bitmapData = bitmapWorkerTask.mData;
220 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
222 if (bitmapWorkerTask != null)
    [all...]

Completed in 756 milliseconds