HomeSort by relevance Sort by last modified time
    Searched refs:BitmapWorkerTask (Results 1 - 8 of 8) 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...]
OngoingCallFragment.java 407 BitmapWorkerTask.BitmapRunnable runnable = new BitmapWorkerTask.BitmapRunnable() {
422 BitmapWorkerTask.loadBitmap(cr, mLargeContactPhotoView, primaryNumber, runnable);
430 BitmapWorkerTask.BitmapRunnable runnable = new BitmapWorkerTask.BitmapRunnable() {
442 BitmapWorkerTask.loadBitmap(context.getContentResolver(), mLargeContactPhotoView,
  /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...]
  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
BitmapDownloader.java 32 * This class adds a cache over BitmapWorkerTask.
85 SoftReference<BitmapWorkerTask> mTask;
135 BitmapWorkerTask task = new BitmapWorkerTask(null) {
167 BitmapWorkerTask task = new BitmapWorkerTask(imageView) {
177 imageView.setTag(R.id.imageDownloadTask, new SoftReference<BitmapWorkerTask>(task));
195 BitmapWorkerTask task = new BitmapWorkerTask(null) {
213 callback.mTask = new SoftReference<BitmapWorkerTask>(task)
    [all...]
BitmapWorkerTask.java 51 public class BitmapWorkerTask extends AsyncTask<BitmapWorkerOptions, Void, Bitmap> {
65 public BitmapWorkerTask(ImageView imageView) {

Completed in 285 milliseconds