Searched defs:largeIcon (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/app/
H A DNotificationCompat.java297 public static final String EXTRA_LARGE_ICON = "android.largeIcon";
4767 * @param largeIcon The large icon to use in the car notification.
4770 public CarExtender setLargeIcon(Bitmap largeIcon) { argument
4771 mLargeIcon = largeIcon;
/frameworks/base/core/java/android/app/
H A DNotification.java388 public Bitmap largeIcon; field in class:Notification
1034 public static final String EXTRA_LARGE_ICON = "android.largeIcon";
2540 if (mLargeIcon == null && largeIcon != null) {
2542 mLargeIcon = Icon.createWithBitmap(largeIcon);
3278 if (mN.getLargeIcon() == null && mN.largeIcon != null) {
3279 setLargeIcon(mN.largeIcon);
4645 * @return if the largeIcon is visible
4648 if (mN.mLargeIcon == null && mN.largeIcon != null) {
4649 mN.mLargeIcon = Icon.createWithBitmap(mN.largeIcon);
5140 Icon largeIcon
5418 processLargeLegacyIcon(Icon largeIcon, RemoteViews contentView) argument
9128 setLargeIcon(Bitmap largeIcon) argument
[all...]

Completed in 771 milliseconds