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 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/TvSettings/Settings/src/com/android/tv/settings/widget/
BitmapDownloader.java 42 * This class adds a cache over BitmapWorkerTask.
97 SoftReference<BitmapWorkerTask> mTask;
169 BitmapWorkerTask task = new BitmapWorkerTask(null) {
201 BitmapWorkerTask task = new BitmapWorkerTask(imageView) {
229 BitmapWorkerTask task = new BitmapWorkerTask(null) {
256 BitmapWorkerTask task = null;
259 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 135 milliseconds