Searched refs:DrawableLoader (Results 1 – 2 of 2) sorted by relevance
143 SoftReference<DrawableLoader> mTask;178 return DrawableLoader.getDrawable(context, iconResource); in getDrawable()233 DrawableLoader task = new DrawableLoader(null, mRecycledBitmaps) { in loadBitmapBlocking()264 DrawableLoader task = new DrawableLoader(imageView, mRecycledBitmaps) { in loadBitmap()274 imageView.setTag(R.id.imageDownloadTask, new SoftReference<DrawableLoader>(task)); in loadBitmap()296 DrawableLoader task = new DrawableLoader(null, mRecycledBitmaps) { in getBitmap()311 callback.mTask = new SoftReference<DrawableLoader>(task); in getBitmap()315 private static void scheduleTask(DrawableLoader task, BitmapWorkerOptions options) { in scheduleTask()328 DrawableLoader task = null; in cancelDownload()331 SoftReference<DrawableLoader> softReference = in cancelDownload()[all …]
56 class DrawableLoader extends AsyncTask<BitmapWorkerOptions, Void, Drawable> { class80 DrawableLoader(ImageView imageView, RecycleBitmapPool recycledBitmapPool) { in DrawableLoader() method in DrawableLoader