Home | History | Annotate | Download | only in settings

Lines Matching defs:bitmap

45 import android.graphics.Bitmap;
139 private static SparseArray<Bitmap> sDarkDefaultUserBitmapCache = new SparseArray<Bitmap>();
356 Bitmap icon = BitmapFactory.decodeStream(avatarDataStream);
365 Bitmap bitmap = getDefaultUserIconAsBitmap(userId);
366 um.setUserIcon(userId, bitmap);
875 * Returns a default user icon (as a {@link Bitmap}) for the given user.
880 public static Bitmap getDefaultUserIconAsBitmap(int userId) {
881 Bitmap bitmap = null;
882 // Try finding the corresponding bitmap in the dark bitmap cache
883 bitmap = sDarkDefaultUserBitmapCache.get(userId);
884 if (bitmap == null) {
885 bitmap = UserIcons.convertToBitmap(UserIcons.getDefaultUserIcon(userId, false));
887 sDarkDefaultUserBitmapCache.put(userId, bitmap);
889 return bitmap;