Home | History | Annotate | Download | only in com.example.android.mediabrowserservice

Lines Matching defs:bitmap

30 import android.graphics.Bitmap;
67 private final LruCache<String, Bitmap> mAlbumArtCache;
89 mAlbumArtCache = new LruCache<String, Bitmap>(MAX_ALBUM_ART_CACHE_SIZE) {
91 protected int sizeOf(String key, Bitmap value) {
259 Bitmap art = description.getIconBitmap();
353 new AsyncTask<Void, Void, Bitmap>() {
355 protected Bitmap doInBackground(Void[] objects) {
356 Bitmap bitmap = null;
358 bitmap = BitmapHelper.fetchAndRescaleBitmap(source,
360 mAlbumArtCache.put(source, bitmap);
364 return bitmap;
368 protected void onPostExecute(Bitmap bitmap) {
369 if (bitmap != null && mMetadata != null &&
373 LogHelper.d(TAG, "getBitmapFromURLAsync: set bitmap to ", source);
374 mNotificationBuilder.setLargeIcon(bitmap);