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

  /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 91 final BitmapWorkerTask task = new BitmapWorkerTask(data, imageView);
183 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
184 if (bitmapWorkerTask != null) {
185 bitmapWorkerTask.cancel(true);
187 final Object bitmapData = bitmapWorkerTask.mData;
201 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
203 if (bitmapWorkerTask != null)
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageWorker.java 91 final BitmapWorkerTask task = new BitmapWorkerTask(data, imageView);
183 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
184 if (bitmapWorkerTask != null) {
185 bitmapWorkerTask.cancel(true);
187 final Object bitmapData = bitmapWorkerTask.mData;
201 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
203 if (bitmapWorkerTask != null)
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageWorker.java 91 final BitmapWorkerTask task = new BitmapWorkerTask(data, imageView);
183 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
184 if (bitmapWorkerTask != null) {
185 bitmapWorkerTask.cancel(true);
187 final Object bitmapData = bitmapWorkerTask.mData;
201 final BitmapWorkerTask bitmapWorkerTask = getBitmapWorkerTask(imageView);
203 if (bitmapWorkerTask != null)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
BitmapDownloader.java 39 * This class adds a cache over BitmapWorkerTask.
92 SoftReference<BitmapWorkerTask> mTask;
143 BitmapWorkerTask task = new BitmapWorkerTask(null) {
175 BitmapWorkerTask task = new BitmapWorkerTask(imageView) {
203 BitmapWorkerTask task = new BitmapWorkerTask(null) {
230 BitmapWorkerTask task = null;
233 SoftReference<BitmapWorkerTask> softReference
    [all...]
BitmapWorkerTask.java 56 public class BitmapWorkerTask extends AsyncTask<BitmapWorkerOptions, Void, Bitmap> {
70 public BitmapWorkerTask(ImageView imageView) {
232 Log.d("BitmapWorkerTask", "Source bitmap: (" + bitmapOptions.outWidth + "x"

Completed in 85 milliseconds