Home
last modified time | relevance | path

Searched refs:largeIcon (Results 1 – 9 of 9) 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.java46 Icon largeIcon = loadContactAvatar(context, info.getAvatarUri(), size); in getDisplayNameAndRoundedAvatar()
47 if (largeIcon == null) { in getDisplayNameAndRoundedAvatar()
50 largeIcon = TelecomUtils.createLetterTile(context, info.getInitials(), in getDisplayNameAndRoundedAvatar()
54 return new Pair<>(info.getDisplayName(), 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.java285 Bitmap largeIcon = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888); in toBitmap() local
286 Canvas canvas = new Canvas(largeIcon); in toBitmap()
291 return largeIcon; in toBitmap()
/packages/apps/TV/tuner/src/com/android/tv/tuner/setup/
DBaseTunerSetupActivity.java389 Bitmap largeIcon = in sendNotification() local
391 sendRecommendationCard(context, contentTitle, contentText, largeIcon, tunerSetupIntent); in sendNotification()
431 Bitmap largeIcon, in sendRecommendationCard() argument
442 .setLargeIcon(largeIcon) in sendRecommendationCard()
/packages/apps/Car/Messenger/src/com/android/car/messenger/
DMessengerDelegate.java352 Bitmap largeIcon = mSenderToLargeIconBitmap.get(senderKey); in createNotification() local
353 if (largeIcon == null) { in createNotification()
354 largeIcon = in createNotification()
401 .setLargeIcon(largeIcon) in createNotification()
/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()