Home
last modified time | relevance | path

Searched refs:largeIcon (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Dialer/java/com/android/incallui/
DExternalCallNotifier.java203 Bitmap largeIcon = getLargeIconToDisplay(context, entry, info.getCall()); in savePhoto() local
204 if (largeIcon != null) { in savePhoto()
205 largeIcon = getRoundedIcon(context, largeIcon); in savePhoto()
207 info.setLargeIcon(largeIcon); in savePhoto()
303 Bitmap largeIcon = null; in getLargeIconToDisplay() local
308 largeIcon = in getLargeIconToDisplay()
313 largeIcon = ((BitmapDrawable) contactInfo.photo).getBitmap(); in getLargeIconToDisplay()
315 return largeIcon; in getLargeIconToDisplay()
404 @Nullable private Bitmap largeIcon; field in ExternalCallNotifier.NotificationInfo
429 return largeIcon; in getLargeIcon()
[all …]
DStatusBarNotifier.java284 Bitmap largeIcon = getLargeIconToDisplay(context, contactInfo, call); in buildAndSendNotification() local
318 largeIcon, in buildAndSendNotification()
329 if (largeIcon != null) { in buildAndSendNotification()
330 largeIcon = getRoundedIcon(largeIcon); in buildAndSendNotification()
393 builder.setLargeIcon(largeIcon); in buildAndSendNotification()
482 Bitmap largeIcon, in checkForChangeAndSaveData() argument
499 largeIconChanged = largeIcon != null; in checkForChangeAndSaveData()
501 largeIconChanged = largeIcon == null || !savedLargeIcon.sameAs(largeIcon); in checkForChangeAndSaveData()
542 savedLargeIcon = largeIcon; in checkForChangeAndSaveData()
594 Bitmap largeIcon = null; in getLargeIconToDisplay() local
[all …]
/packages/apps/Car/Dialer/src/com/android/car/dialer/notification/
DNotificationUtils.java48 Icon largeIcon = loadRoundedContactAvatar(context, displayNameAndAvatarUri.second, in getDisplayNameAndRoundedAvatar() local
50 if (largeIcon == null) { in getDisplayNameAndRoundedAvatar()
51 largeIcon = createLetterTile(context, displayNameAndAvatarUri.first, avatarSize); in getDisplayNameAndRoundedAvatar()
53 return new Pair<>(displayNameAndAvatarUri.first, largeIcon); in getDisplayNameAndRoundedAvatar()
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/view/
DCircleBitmapDrawable.java107 Bitmap largeIcon = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888); in toBitmap() local
108 Canvas canvas = new Canvas(largeIcon); in toBitmap()
113 return largeIcon; in toBitmap()
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
DLetterTileDrawable.java269 Bitmap largeIcon = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888); in toBitmap() local
270 Canvas canvas = new Canvas(largeIcon); in toBitmap()
275 return largeIcon; in toBitmap()
/packages/apps/TV/tuner/src/com/android/tv/tuner/setup/
DBaseTunerSetupActivity.java381 Bitmap largeIcon = in sendNotification() local
383 sendRecommendationCard(context, contentTitle, contentText, largeIcon, tunerSetupIntent); in sendNotification()
423 Bitmap largeIcon, in sendRecommendationCard() argument
434 .setLargeIcon(largeIcon) in sendRecommendationCard()
/packages/modules/ExtServices/tests/src/android/ext/services/notification/
DNotificationEntryTest.java255 n.largeIcon = Bitmap.createBitmap(100, 200, Bitmap.Config.RGB_565); in testShrinkNotification()
263 assertNull(entry.getNotification().largeIcon); in testShrinkNotification()
/packages/modules/ExtServices/src/android/ext/services/notification/
DNotificationEntry.java91 notification.largeIcon = null; in lightenNotificationPayload()