Home
last modified time | relevance | path

Searched refs:largeIcon (Results 1 – 7 of 7) 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.java288 Bitmap largeIcon = getLargeIconToDisplay(context, contactInfo, call); in buildAndSendNotification() local
322 largeIcon, in buildAndSendNotification()
333 if (largeIcon != null) { in buildAndSendNotification()
334 largeIcon = getRoundedIcon(largeIcon); in buildAndSendNotification()
397 builder.setLargeIcon(largeIcon); in buildAndSendNotification()
486 Bitmap largeIcon, in checkForChangeAndSaveData() argument
503 largeIconChanged = largeIcon != null; in checkForChangeAndSaveData()
505 largeIconChanged = largeIcon == null || !savedLargeIcon.sameAs(largeIcon); in checkForChangeAndSaveData()
546 savedLargeIcon = largeIcon; in checkForChangeAndSaveData()
598 Bitmap largeIcon = null; in getLargeIconToDisplay() local
[all …]
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/ui/wear/elements/
DChip.kt65 largeIcon: Boolean = false, in Chip()
75 if (largeIcon) { in Chip()
119 largeIcon = largeIcon, in Chip()
141 largeIcon: Boolean = false, in Chip()
155 largeIcon = largeIcon, in Chip()
178 largeIcon: Boolean = false, in Chip()
213 if (largeIcon) { in Chip()
/packages/apps/Car/Notification/src/com/android/car/notification/template/
DCarNotificationBodyView.java158 StatusBarNotification sbn, @Nullable Icon largeIcon, @Nullable Drawable titleIcon, in bind() argument
169 if (largeIcon != null) { in bind()
170 largeIcon.loadDrawableAsync(getContext(), drawable -> { in bind()
/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/modules/ExtServices/java/tests/src/android/ext/services/notification/
DNotificationEntryTest.java253 n.largeIcon = Bitmap.createBitmap(100, 200, Bitmap.Config.RGB_565); in testShrinkNotification()
261 assertNull(entry.getNotification().largeIcon); in testShrinkNotification()
/packages/modules/ExtServices/java/src/android/ext/services/notification/
DNotificationEntry.java86 notification.largeIcon = null; in lightenNotificationPayload()