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

/frameworks/support/v4/honeycomb/android/support/v4/app/
H A DNotificationCompatHoneycomb.java29 PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon) {
49 .setLargeIcon(largeIcon)
26 add(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon) argument
/frameworks/support/v4/ics/android/support/v4/app/
H A DNotificationCompatIceCreamSandwich.java29 PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon,
50 .setLargeIcon(largeIcon)
26 add(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int progressMax, int progress, boolean progressIndeterminate) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationTemplateViewWrapper.java74 ImageView largeIcon = (ImageView) mView.findViewById(com.android.internal.R.id.icon);
76 mIcon = resolveIcon(largeIcon, rightIcon);
77 mPicture = resolvePicture(largeIcon);
86 private ImageView resolveIcon(ImageView largeIcon, ImageView rightIcon) { argument
87 return largeIcon != null && largeIcon.getBackground() != null ? largeIcon
92 private ImageView resolvePicture(ImageView largeIcon) { argument
93 return largeIcon != null && largeIcon
[all...]
/frameworks/support/v4/api20/android/support/v4/app/
H A DNotificationCompatApi20.java39 PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon,
65 .setLargeIcon(largeIcon)
36 Builder(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int progressMax, int progress, boolean progressIndeterminate, boolean showWhen, boolean useChronometer, int priority, CharSequence subText, boolean localOnly, ArrayList<String> people, Bundle extras, String groupKey, boolean groupSummary, String sortKey) argument
/frameworks/support/v4/kitkat/android/support/v4/app/
H A DNotificationCompatKitKat.java40 PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon,
66 .setLargeIcon(largeIcon)
37 Builder(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int progressMax, int progress, boolean progressIndeterminate, boolean showWhen, boolean useChronometer, int priority, CharSequence subText, boolean localOnly, ArrayList<String> people, Bundle extras, String groupKey, boolean groupSummary, String sortKey) argument
/frameworks/support/v4/api21/android/support/v4/app/
H A DNotificationCompatApi21.java62 PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon,
89 .setLargeIcon(largeIcon)
59 Builder(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int progressMax, int progress, boolean progressIndeterminate, boolean showWhen, boolean useChronometer, int priority, CharSequence subText, boolean localOnly, String category, ArrayList<String> people, Bundle extras, int color, int visibility, Notification publicVersion, String groupKey, boolean groupSummary, String sortKey) argument
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java73 PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon,
97 .setLargeIcon(largeIcon)
70 Builder(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int progressMax, int progress, boolean progressIndeterminate, boolean useChronometer, int priority, CharSequence subText, boolean localOnly, Bundle extras, String groupKey, boolean groupSummary, String sortKey) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java249 public static final String EXTRA_LARGE_ICON = "android.largeIcon";
3001 * @param largeIcon The large icon to use in the car notification.
3004 public CarExtender setLargeIcon(Bitmap largeIcon) { argument
3005 mLargeIcon = largeIcon;
/frameworks/base/core/java/android/app/
H A DNotification.java270 public Bitmap largeIcon; field in class:Notification
742 public static final String EXTRA_LARGE_ICON = "android.largeIcon";
1373 largeIcon = Bitmap.CREATOR.createFromParcel(parcel);
1455 if (heavy && this.largeIcon != null) {
1456 that.largeIcon = Bitmap.createBitmap(this.largeIcon);
1537 largeIcon = null;
1611 if (largeIcon != null) {
1613 largeIcon.writeToParcel(parcel, 0);
1892 public static final String EXTRA_REBUILD_LARGE_ICON = "android.rebuild.largeIcon";
3073 processLargeLegacyIcon(Bitmap largeIcon, RemoteViews contentView) argument
[all...]

Completed in 622 milliseconds