Home | History | Annotate | Download | only in app

Lines Matching refs:largeIcon

350     public Bitmap largeIcon;
941 public static final String EXTRA_LARGE_ICON = "android.largeIcon";
2259 if (mLargeIcon == null && largeIcon != null) {
2261 mLargeIcon = Icon.createWithBitmap(largeIcon);
2848 if (mN.getLargeIcon() == null && mN.largeIcon != null) {
2849 setLargeIcon(mN.largeIcon);
4107 if (mN.mLargeIcon == null && mN.largeIcon != null) {
4108 mN.mLargeIcon = Icon.createWithBitmap(mN.largeIcon);
4571 Icon largeIcon = mN.mLargeIcon;
4573 Bitmap largeIconLegacy = mN.largeIcon;
4574 mN.largeIcon = null;
4595 mN.mLargeIcon = largeIcon;
4596 mN.largeIcon = largeIconLegacy;
4823 * Make the largeIcon dark if it's a fake smallIcon (that is,
4827 private void processLargeLegacyIcon(Icon largeIcon, RemoteViews contentView) {
4828 if (largeIcon != null && isLegacy()
4829 && getColorUtil().isGrayscaleIcon(mContext, largeIcon)) {
5166 if (mLargeIcon != null || largeIcon != null) {
5185 if (largeIcon != null) {
5186 largeIcon = Icon.scaleDownIfNecessary(largeIcon, maxWidth, maxHeight);
5295 return mLargeIcon != null || largeIcon != null;
5652 // The legacy largeIcon might not allow us to clear the image, as it's taken in
5655 largeIconLegacy = mBuilder.mN.largeIcon;
5656 mBuilder.mN.largeIcon = null;
5670 mBuilder.mN.largeIcon = largeIconLegacy;
7989 * @param largeIcon The large icon to use in the car notification.
7992 public CarExtender setLargeIcon(Bitmap largeIcon) {
7993 mLargeIcon = largeIcon;