Home
last modified time | relevance | path

Searched refs:centeredIcon (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationEntry.java98 public StatusBarIconView centeredIcon; field in NotificationEntry
364 centeredIcon = null; in createIcons()
377 centeredIcon = new StatusBarIconView(context, in createIcons()
379 centeredIcon.setScaleType(ImageView.ScaleType.CENTER_INSIDE); in createIcons()
381 if (!centeredIcon.set(ic)) { in createIcons()
382 centeredIcon = null; in createIcons()
394 if (centeredIcon != null) { in setIconTag()
395 centeredIcon.setTag(key, tag); in setIconTag()
424 if (centeredIcon != null) { in updateIcons()
425 centeredIcon.setNotification(sbn); in updateIcons()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationIconAreaController.java106 mCenteredIcon = mCenteredIconArea.findViewById(R.id.centeredIcon); in initializeNotificationAreaViews()
198 final boolean isCenteredNotificationIcon = entry.centeredIcon != null in shouldShowNotificationIcon()
199 && Objects.equals(entry.centeredIcon, mCenteredIconView); in shouldShowNotificationIcon()
263 updateIconsForLayout(entry -> entry.centeredIcon, mCenteredIcon, in updateCenterIcon()
450 StatusBarIconView icon = entry == null ? null : entry.centeredIcon; in showIconCentered()