Lines Matching refs:extras

210      * Notification extras key: this is the title of the notification,
216 * Notification extras key: this is the title of the notification when shown in expanded form,
222 * Notification extras key: this is the main text payload, as supplied to
228 * Notification extras key: this is a third line of text, as supplied to
234 * Notification extras key: this is the remote input history, as supplied to
250 * Notification extras key: this is a small piece of additional text as supplied to
256 * Notification extras key: this is a line of summary information intended to be shown
263 * Notification extras key: this is the longer text shown in the big form of a
270 * Notification extras key: this is the resource ID of the notification's main small icon, as
276 * Notification extras key: this is a bitmap to be used instead of the small icon when showing the
283 * Notification extras key: this is a bitmap to be used instead of the one from
291 * Notification extras key: this is the progress value supplied to
297 * Notification extras key: this is the maximum value supplied to
303 * Notification extras key: whether the progress bar is indeterminate, supplied to
309 * Notification extras key: whether the when field set using {@link Builder#setWhen} should
316 * Notification extras key: whether the when field set using {@link Builder#setWhen} should
322 * Notification extras key: this is a bitmap to be shown in {@link BigPictureStyle} expanded
328 * Notification extras key: An array of CharSequences to show in {@link InboxStyle} expanded
334 * Notification extras key: A string representing the name of the specific
340 * Notification extras key: A String array containing the people that this
347 * Notification extras key: A
365 * Notification extras key: the indices of actions to be shown in the compact view,
708 Bundle extras = getExtras(notification);
709 if (extras != null) {
710 b.mStyle.addCompatExtras(extras);
1592 * <p>Values within the Bundle will replace existing extras values in this Builder.
1594 * @see Notification#extras
1596 public Builder addExtras(Bundle extras) {
1597 if (extras != null) {
1599 mExtras = new Bundle(extras);
1601 mExtras.putAll(extras);
1614 * <p>Replaces any existing extras values with those from the provided Bundle.
1617 * @see Notification#extras
1619 public Builder setExtras(Bundle extras) {
1620 mExtras = extras;
1632 * @see Notification#extras
1999 public void addCompatExtras(Bundle extras) {
2007 protected void restoreFromCompatExtras(Bundle extras) {
2274 Bundle extras = NotificationCompat.getExtras(notification);
2275 if (extras != null && !extras.containsKey(EXTRA_SELF_DISPLAY_NAME)) {
2280 style.restoreFromCompatExtras(extras);
2289 public void addCompatExtras(Bundle extras) {
2290 super.addCompatExtras(extras);
2292 extras.putCharSequence(EXTRA_SELF_DISPLAY_NAME, mUserDisplayName);
2295 extras.putCharSequence(EXTRA_CONVERSATION_TITLE, mConversationTitle);
2297 if (!mMessages.isEmpty()) { extras.putParcelableArray(EXTRA_MESSAGES,
2307 protected void restoreFromCompatExtras(Bundle extras) {
2309 mUserDisplayName = extras.getString(EXTRA_SELF_DISPLAY_NAME);
2310 mConversationTitle = extras.getString(EXTRA_CONVERSATION_TITLE);
2311 Parcelable[] parcelables = extras.getParcelableArray(EXTRA_MESSAGES);
2324 static final String KEY_EXTRAS_BUNDLE = "extras";
2399 * Get the extras Bundle for this message.
2600 Action(int icon, CharSequence title, PendingIntent intent, Bundle extras,
2606 this.mExtras = extras != null ? extras : new Bundle();
2700 private Builder(int icon, CharSequence title, PendingIntent intent, Bundle extras,
2705 mExtras = extras;
2714 * <p>Values within the Bundle will replace existing extras values in this Builder.
2718 public Builder addExtras(Bundle extras) {
2719 if (extras != null) {
2720 mExtras.putAll(extras);
3060 PendingIntent actionIntent, Bundle extras,
3064 return new Action(icon, title, actionIntent, extras,
3254 Bundle extras = getExtras(notification);
3255 Bundle wearableBundle = extras != null ? extras.getBundle(EXTRA_WEARABLE_EXTENSIONS)
4278 * Gets the {@link Notification#extras} field from a notification in a backwards
4284 return notification.extras;
4339 return notification.extras.getBoolean(NotificationCompatJellybean.EXTRA_LOCAL_ONLY);
4356 return notification.extras.getString(NotificationCompatJellybean.EXTRA_GROUP_KEY);
4375 return notification.extras.getBoolean(NotificationCompatJellybean.EXTRA_GROUP_SUMMARY);
4400 return notification.extras.getString(NotificationCompatJellybean.EXTRA_SORT_KEY);