blob: e2ea76356a45305b2a0919b79388fe8ff69de69f [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.app;
18
Andy Stadler110988c2010-12-03 14:29:16 -080019import com.android.internal.R;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020
Tor Norbyed9273d62013-05-30 15:59:53 -070021import android.annotation.IntDef;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.content.Context;
23import android.content.Intent;
Daniel Sandler9f7936a2012-05-21 16:14:28 -040024import android.content.res.Resources;
Joe Onoratoef1e7762010-09-17 18:38:38 -040025import android.graphics.Bitmap;
Jeff Sharkey098d5802012-04-26 17:30:34 -070026import android.media.AudioManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import android.net.Uri;
Daniel Sandlerdcbaf662013-04-26 16:23:09 -040028import android.os.BadParcelableException;
Daniel Sandler2561b0b2012-02-13 21:04:12 -050029import android.os.Bundle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import android.os.Parcel;
31import android.os.Parcelable;
Daniel Sandlera2985ed2012-04-03 16:42:00 -040032import android.os.SystemClock;
Jeff Sharkey6d515712012-09-20 16:06:08 -070033import android.os.UserHandle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034import android.text.TextUtils;
Daniel Sandlerdcbaf662013-04-26 16:23:09 -040035import android.util.Log;
Daniel Sandler9f7936a2012-05-21 16:14:28 -040036import android.util.TypedValue;
Joe Onorato8595a3d2010-11-19 18:12:07 -080037import android.view.View;
Jeff Sharkey1c400132011-08-05 14:50:13 -070038import android.widget.ProgressBar;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import android.widget.RemoteViews;
40
Tor Norbyed9273d62013-05-30 15:59:53 -070041import java.lang.annotation.Retention;
42import java.lang.annotation.RetentionPolicy;
Andy Stadler110988c2010-12-03 14:29:16 -080043import java.text.NumberFormat;
Daniel Sandler2561b0b2012-02-13 21:04:12 -050044import java.util.ArrayList;
Joe Onorato561d3852010-11-20 18:09:34 -080045
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046/**
47 * A class that represents how a persistent notification is to be presented to
48 * the user using the {@link android.app.NotificationManager}.
49 *
Joe Onoratocb109a02011-01-18 17:57:41 -080050 * <p>The {@link Notification.Builder Notification.Builder} has been added to make it
51 * easier to construct Notifications.</p>
52 *
Joe Fernandez558459f2011-10-13 16:47:36 -070053 * <div class="special reference">
54 * <h3>Developer Guides</h3>
55 * <p>For a guide to creating notifications, read the
56 * <a href="{@docRoot}guide/topics/ui/notifiers/notifications.html">Status Bar Notifications</a>
57 * developer guide.</p>
58 * </div>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059 */
60public class Notification implements Parcelable
61{
Daniel Sandlerdcbaf662013-04-26 16:23:09 -040062 private static final String TAG = "Notification";
63
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064 /**
65 * Use all default values (where applicable).
66 */
67 public static final int DEFAULT_ALL = ~0;
Daniel Sandler2561b0b2012-02-13 21:04:12 -050068
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069 /**
70 * Use the default notification sound. This will ignore any given
71 * {@link #sound}.
Daniel Sandler2561b0b2012-02-13 21:04:12 -050072 *
73
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074 * @see #defaults
Daniel Sandler2561b0b2012-02-13 21:04:12 -050075 */
76
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077 public static final int DEFAULT_SOUND = 1;
78
79 /**
80 * Use the default notification vibrate. This will ignore any given
Daniel Sandler2561b0b2012-02-13 21:04:12 -050081 * {@link #vibrate}. Using phone vibration requires the
Scott Mainb8b36452009-04-26 15:50:49 -070082 * {@link android.Manifest.permission#VIBRATE VIBRATE} permission.
Daniel Sandler2561b0b2012-02-13 21:04:12 -050083 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 * @see #defaults
Daniel Sandler2561b0b2012-02-13 21:04:12 -050085 */
86
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087 public static final int DEFAULT_VIBRATE = 2;
Daniel Sandler2561b0b2012-02-13 21:04:12 -050088
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 /**
90 * Use the default notification lights. This will ignore the
91 * {@link #FLAG_SHOW_LIGHTS} bit, and {@link #ledARGB}, {@link #ledOffMS}, or
92 * {@link #ledOnMS}.
Daniel Sandler2561b0b2012-02-13 21:04:12 -050093 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094 * @see #defaults
Daniel Sandler2561b0b2012-02-13 21:04:12 -050095 */
96
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097 public static final int DEFAULT_LIGHTS = 4;
Daniel Sandler2561b0b2012-02-13 21:04:12 -050098
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500100 * A timestamp related to this notification, in milliseconds since the epoch.
Joe Malin8d40d042012-11-05 11:36:40 -0800101 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500102 * Default value: {@link System#currentTimeMillis() Now}.
103 *
104 * Choose a timestamp that will be most relevant to the user. For most finite events, this
105 * corresponds to the time the event happened (or will happen, in the case of events that have
106 * yet to occur but about which the user is being informed). Indefinite events should be
Joe Malin8d40d042012-11-05 11:36:40 -0800107 * timestamped according to when the activity began.
108 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500109 * Some examples:
Joe Malin8d40d042012-11-05 11:36:40 -0800110 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500111 * <ul>
112 * <li>Notification of a new chat message should be stamped when the message was received.</li>
113 * <li>Notification of an ongoing file download (with a progress bar, for example) should be stamped when the download started.</li>
114 * <li>Notification of a completed file download should be stamped when the download finished.</li>
115 * <li>Notification of an upcoming meeting should be stamped with the time the meeting will begin (that is, in the future).</li>
116 * <li>Notification of an ongoing stopwatch (increasing timer) should be stamped with the watch's start time.
117 * <li>Notification of an ongoing countdown timer should be stamped with the timer's end time.
Joe Malin8d40d042012-11-05 11:36:40 -0800118 * </ul>
119 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120 */
121 public long when;
122
123 /**
124 * The resource id of a drawable to use as the icon in the status bar.
Daniel Sandlerd952dae2011-02-07 16:33:36 -0500125 * This is required; notifications with an invalid icon resource will not be shown.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126 */
127 public int icon;
128
129 /**
Joe Onorato46439ce2010-11-19 13:56:21 -0800130 * If the icon in the status bar is to have more than one level, you can set this. Otherwise,
131 * leave it at its default value of 0.
132 *
133 * @see android.widget.ImageView#setImageLevel
134 * @see android.graphics.drawable#setLevel
135 */
136 public int iconLevel;
137
138 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500139 * The number of events that this notification represents. For example, in a new mail
140 * notification, this could be the number of unread messages.
Joe Malin8d40d042012-11-05 11:36:40 -0800141 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500142 * The system may or may not use this field to modify the appearance of the notification. For
143 * example, before {@link android.os.Build.VERSION_CODES#HONEYCOMB}, this number was
144 * superimposed over the icon in the status bar. Starting with
145 * {@link android.os.Build.VERSION_CODES#HONEYCOMB}, the template used by
146 * {@link Notification.Builder} has displayed the number in the expanded notification view.
Joe Malin8d40d042012-11-05 11:36:40 -0800147 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500148 * If the number is 0 or negative, it is never shown.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 */
150 public int number;
151
152 /**
153 * The intent to execute when the expanded status entry is clicked. If
154 * this is an activity, it must include the
155 * {@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK} flag, which requires
Scott Main7aee61f2011-02-08 11:25:01 -0800156 * that you take care of task management as described in the
157 * <a href="{@docRoot}guide/topics/fundamentals/tasks-and-back-stack.html">Tasks and Back
Dianne Hackborn6ceca582012-01-10 15:24:26 -0800158 * Stack</a> document. In particular, make sure to read the notification section
159 * <a href="{@docRoot}guide/topics/ui/notifiers/notifications.html#HandlingNotifications">Handling
160 * Notifications</a> for the correct ways to launch an application from a
161 * notification.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162 */
163 public PendingIntent contentIntent;
164
165 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500166 * The intent to execute when the notification is explicitly dismissed by the user, either with
167 * the "Clear All" button or by swiping it away individually.
168 *
169 * This probably shouldn't be launching an activity since several of those will be sent
170 * at the same time.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171 */
172 public PendingIntent deleteIntent;
173
174 /**
Dianne Hackborn170bae72010-09-03 15:14:28 -0700175 * An intent to launch instead of posting the notification to the status bar.
Joe Onoratocb109a02011-01-18 17:57:41 -0800176 *
177 * @see Notification.Builder#setFullScreenIntent
Daniel Sandlere46cbd32010-06-17 10:35:26 -0400178 */
179 public PendingIntent fullScreenIntent;
180
181 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182 * Text to scroll across the screen when this item is added to
Joe Onoratoef1e7762010-09-17 18:38:38 -0400183 * the status bar on large and smaller devices.
184 *
Joe Onorato46439ce2010-11-19 13:56:21 -0800185 * @see #tickerView
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186 */
187 public CharSequence tickerText;
188
189 /**
Joe Onorato46439ce2010-11-19 13:56:21 -0800190 * The view to show as the ticker in the status bar when the notification
191 * is posted.
Joe Onoratoef1e7762010-09-17 18:38:38 -0400192 */
Joe Onorato46439ce2010-11-19 13:56:21 -0800193 public RemoteViews tickerView;
Joe Onoratoef1e7762010-09-17 18:38:38 -0400194
195 /**
Daniel Sandlere46cbd32010-06-17 10:35:26 -0400196 * The view that will represent this notification in the expanded status bar.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 */
198 public RemoteViews contentView;
199
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400200 /**
Daniel Sandler4dfbe832012-04-11 14:51:46 -0400201 * A large-format version of {@link #contentView}, giving the Notification an
Daniel Sandlerf3b73432012-03-27 15:01:25 -0400202 * opportunity to show more detail. The system UI may choose to show this
203 * instead of the normal content view at its discretion.
Daniel Sandlerf3b73432012-03-27 15:01:25 -0400204 */
205 public RemoteViews bigContentView;
206
207 /**
Joe Onorato46439ce2010-11-19 13:56:21 -0800208 * The bitmap that may escape the bounds of the panel and bar.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800209 */
Joe Onorato46439ce2010-11-19 13:56:21 -0800210 public Bitmap largeIcon;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211
212 /**
213 * The sound to play.
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500214 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215 * <p>
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500216 * To play the default notification sound, see {@link #defaults}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 * </p>
218 */
219 public Uri sound;
220
221 /**
222 * Use this constant as the value for audioStreamType to request that
223 * the default stream type for notifications be used. Currently the
Jeff Sharkey098d5802012-04-26 17:30:34 -0700224 * default stream type is {@link AudioManager#STREAM_NOTIFICATION}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225 */
226 public static final int STREAM_DEFAULT = -1;
227
228 /**
229 * The audio stream type to use when playing the sound.
230 * Should be one of the STREAM_ constants from
231 * {@link android.media.AudioManager}.
232 */
233 public int audioStreamType = STREAM_DEFAULT;
234
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800235 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500236 * The pattern with which to vibrate.
237 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800238 * <p>
239 * To vibrate the default pattern, see {@link #defaults}.
240 * </p>
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500241 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800242 * @see android.os.Vibrator#vibrate(long[],int)
243 */
244 public long[] vibrate;
245
246 /**
247 * The color of the led. The hardware will do its best approximation.
248 *
249 * @see #FLAG_SHOW_LIGHTS
250 * @see #flags
251 */
252 public int ledARGB;
253
254 /**
255 * The number of milliseconds for the LED to be on while it's flashing.
256 * The hardware will do its best approximation.
257 *
258 * @see #FLAG_SHOW_LIGHTS
259 * @see #flags
260 */
261 public int ledOnMS;
262
263 /**
264 * The number of milliseconds for the LED to be off while it's flashing.
265 * The hardware will do its best approximation.
266 *
267 * @see #FLAG_SHOW_LIGHTS
268 * @see #flags
269 */
270 public int ledOffMS;
271
272 /**
273 * Specifies which values should be taken from the defaults.
274 * <p>
275 * To set, OR the desired from {@link #DEFAULT_SOUND},
276 * {@link #DEFAULT_VIBRATE}, {@link #DEFAULT_LIGHTS}. For all default
277 * values, use {@link #DEFAULT_ALL}.
278 * </p>
279 */
280 public int defaults;
281
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 /**
283 * Bit to be bitwise-ored into the {@link #flags} field that should be
284 * set if you want the LED on for this notification.
285 * <ul>
286 * <li>To turn the LED off, pass 0 in the alpha channel for colorARGB
287 * or 0 for both ledOnMS and ledOffMS.</li>
288 * <li>To turn the LED on, pass 1 for ledOnMS and 0 for ledOffMS.</li>
289 * <li>To flash the LED, pass the number of milliseconds that it should
290 * be on and off to ledOnMS and ledOffMS.</li>
291 * </ul>
292 * <p>
293 * Since hardware varies, you are not guaranteed that any of the values
294 * you pass are honored exactly. Use the system defaults (TODO) if possible
295 * because they will be set to values that work on any given hardware.
296 * <p>
297 * The alpha channel must be set for forward compatibility.
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500298 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 */
300 public static final int FLAG_SHOW_LIGHTS = 0x00000001;
301
302 /**
303 * Bit to be bitwise-ored into the {@link #flags} field that should be
304 * set if this notification is in reference to something that is ongoing,
305 * like a phone call. It should not be set if this notification is in
306 * reference to something that happened at a particular point in time,
307 * like a missed phone call.
308 */
309 public static final int FLAG_ONGOING_EVENT = 0x00000002;
310
311 /**
312 * Bit to be bitwise-ored into the {@link #flags} field that if set,
Scott Mainb8b36452009-04-26 15:50:49 -0700313 * the audio will be repeated until the notification is
314 * cancelled or the notification window is opened.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800315 */
316 public static final int FLAG_INSISTENT = 0x00000004;
317
318 /**
319 * Bit to be bitwise-ored into the {@link #flags} field that should be
320 * set if you want the sound and/or vibration play each time the
321 * notification is sent, even if it has not been canceled before that.
322 */
323 public static final int FLAG_ONLY_ALERT_ONCE = 0x00000008;
324
325 /**
326 * Bit to be bitwise-ored into the {@link #flags} field that should be
327 * set if the notification should be canceled when it is clicked by the
Daniel Sandler8aa9ae62012-12-04 23:31:47 -0500328 * user.
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500329
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800330 */
331 public static final int FLAG_AUTO_CANCEL = 0x00000010;
332
333 /**
334 * Bit to be bitwise-ored into the {@link #flags} field that should be
335 * set if the notification should not be canceled when the user clicks
336 * the Clear all button.
337 */
338 public static final int FLAG_NO_CLEAR = 0x00000020;
339
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700340 /**
341 * Bit to be bitwise-ored into the {@link #flags} field that should be
342 * set if this notification represents a currently running service. This
343 * will normally be set for you by {@link Service#startForeground}.
344 */
345 public static final int FLAG_FOREGROUND_SERVICE = 0x00000040;
346
Daniel Sandlere46cbd32010-06-17 10:35:26 -0400347 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500348 * Obsolete flag indicating high-priority notifications; use the priority field instead.
Joe Malin8d40d042012-11-05 11:36:40 -0800349 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500350 * @deprecated Use {@link #priority} with a positive value.
Daniel Sandlere46cbd32010-06-17 10:35:26 -0400351 */
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500352 public static final int FLAG_HIGH_PRIORITY = 0x00000080;
Daniel Sandlere46cbd32010-06-17 10:35:26 -0400353
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800354 public int flags;
355
Tor Norbyed9273d62013-05-30 15:59:53 -0700356 /** @hide */
357 @IntDef({PRIORITY_DEFAULT,PRIORITY_LOW,PRIORITY_MIN,PRIORITY_HIGH,PRIORITY_MAX})
358 @Retention(RetentionPolicy.SOURCE)
359 public @interface Priority {}
360
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800361 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500362 * Default notification {@link #priority}. If your application does not prioritize its own
363 * notifications, use this value for all notifications.
364 */
365 public static final int PRIORITY_DEFAULT = 0;
366
367 /**
368 * Lower {@link #priority}, for items that are less important. The UI may choose to show these
369 * items smaller, or at a different position in the list, compared with your app's
370 * {@link #PRIORITY_DEFAULT} items.
371 */
372 public static final int PRIORITY_LOW = -1;
373
374 /**
375 * Lowest {@link #priority}; these items might not be shown to the user except under special
376 * circumstances, such as detailed notification logs.
377 */
378 public static final int PRIORITY_MIN = -2;
379
380 /**
381 * Higher {@link #priority}, for more important notifications or alerts. The UI may choose to
382 * show these items larger, or at a different position in notification lists, compared with
383 * your app's {@link #PRIORITY_DEFAULT} items.
384 */
385 public static final int PRIORITY_HIGH = 1;
386
387 /**
388 * Highest {@link #priority}, for your application's most important items that require the
389 * user's prompt attention or input.
390 */
391 public static final int PRIORITY_MAX = 2;
392
393 /**
394 * Relative priority for this notification.
Joe Malin8d40d042012-11-05 11:36:40 -0800395 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500396 * Priority is an indication of how much of the user's valuable attention should be consumed by
397 * this notification. Low-priority notifications may be hidden from the user in certain
398 * situations, while the user might be interrupted for a higher-priority notification. The
Daniel Sandler6738eee2012-11-16 12:03:32 -0500399 * system will make a determination about how to interpret this priority when presenting
400 * the notification.
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500401 */
Tor Norbyed9273d62013-05-30 15:59:53 -0700402 @Priority
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500403 public int priority;
Joe Malin8d40d042012-11-05 11:36:40 -0800404
Dan Sandler0bf2ed82013-12-21 23:33:41 -0600405
406 /**
407 * Sphere of visibility of this notification, which affects how and when the SystemUI reveals
408 * the notification's presence and contents in untrusted situations (namely, on the secure
409 * lockscreen).
410 *
411 * The default level, {@link #VISIBILITY_PRIVATE}, behaves exactly as notifications have always
412 * done on Android: The notification's {@link #icon} and {@link #tickerText} (if available) are
413 * shown in all situations, but the contents are only available if the device is unlocked for
414 * the appropriate user.
415 *
416 * A more permissive policy can be expressed by {@link #VISIBILITY_PUBLIC}; such a notification
417 * can be read even in an "insecure" context (that is, above a secure lockscreen).
418 * To modify the public version of this notification—for example, to redact some portions—see
419 * {@link Builder#setPublicVersion(Notification)}.
420 *
421 * Finally, a notification can be made {@link #VISIBILITY_SECRET}, which will suppress its icon
422 * and ticker until the user has bypassed the lockscreen.
423 */
424 public int visibility;
425
426 public static final int VISIBILITY_PUBLIC = 1;
427 public static final int VISIBILITY_PRIVATE = 0;
428 public static final int VISIBILITY_SECRET = -1;
429
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500430 /**
Daniel Sandlerd33b8032012-05-10 11:41:48 -0400431 * @hide
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500432 * Notification type: incoming call (voice or video) or similar synchronous communication request.
433 */
434 public static final String KIND_CALL = "android.call";
435
436 /**
Daniel Sandlerd33b8032012-05-10 11:41:48 -0400437 * @hide
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500438 * Notification type: incoming direct message (SMS, instant message, etc.).
439 */
440 public static final String KIND_MESSAGE = "android.message";
441
442 /**
Daniel Sandlerd33b8032012-05-10 11:41:48 -0400443 * @hide
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500444 * Notification type: asynchronous bulk message (email).
445 */
446 public static final String KIND_EMAIL = "android.email";
447
448 /**
Daniel Sandlerd33b8032012-05-10 11:41:48 -0400449 * @hide
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500450 * Notification type: calendar event.
451 */
452 public static final String KIND_EVENT = "android.event";
453
454 /**
Daniel Sandlera90513d2012-06-04 02:11:17 -0400455 * @hide
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500456 * Notification type: promotion or advertisement.
457 */
458 public static final String KIND_PROMO = "android.promo";
459
460 /**
Daniel Sandlerd33b8032012-05-10 11:41:48 -0400461 * @hide
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500462 * If this notification matches of one or more special types (see the <code>KIND_*</code>
463 * constants), add them here, best match first.
464 */
465 public String[] kind;
466
467 /**
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400468 * Additional semantic data to be carried around with this Notification.
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400469 * <p>
470 * The extras keys defined here are intended to capture the original inputs to {@link Builder}
471 * APIs, and are intended to be used by
472 * {@link android.service.notification.NotificationListenerService} implementations to extract
473 * detailed information from notification objects.
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500474 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400475 public Bundle extras = new Bundle();
476
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400477 /**
478 * {@link #extras} key: this is the title of the notification,
479 * as supplied to {@link Builder#setContentTitle(CharSequence)}.
480 */
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -0500481 public static final String EXTRA_TITLE = "android.title";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400482
483 /**
484 * {@link #extras} key: this is the title of the notification when shown in expanded form,
485 * e.g. as supplied to {@link BigTextStyle#setBigContentTitle(CharSequence)}.
486 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400487 public static final String EXTRA_TITLE_BIG = EXTRA_TITLE + ".big";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400488
489 /**
490 * {@link #extras} key: this is the main text payload, as supplied to
491 * {@link Builder#setContentText(CharSequence)}.
492 */
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -0500493 public static final String EXTRA_TEXT = "android.text";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400494
495 /**
496 * {@link #extras} key: this is a third line of text, as supplied to
497 * {@link Builder#setSubText(CharSequence)}.
498 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400499 public static final String EXTRA_SUB_TEXT = "android.subText";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400500
501 /**
502 * {@link #extras} key: this is a small piece of additional text as supplied to
503 * {@link Builder#setContentInfo(CharSequence)}.
504 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400505 public static final String EXTRA_INFO_TEXT = "android.infoText";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400506
507 /**
508 * {@link #extras} key: this is a line of summary information intended to be shown
509 * alongside expanded notifications, as supplied to (e.g.)
510 * {@link BigTextStyle#setSummaryText(CharSequence)}.
511 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400512 public static final String EXTRA_SUMMARY_TEXT = "android.summaryText";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400513
514 /**
515 * {@link #extras} key: this is the resource ID of the notification's main small icon, as
516 * supplied to {@link Builder#setSmallIcon(int)}.
517 */
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -0500518 public static final String EXTRA_SMALL_ICON = "android.icon";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400519
520 /**
521 * {@link #extras} key: this is a bitmap to be used instead of the small icon when showing the
522 * notification payload, as
523 * supplied to {@link Builder#setLargeIcon(android.graphics.Bitmap)}.
524 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400525 public static final String EXTRA_LARGE_ICON = "android.largeIcon";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400526
527 /**
528 * {@link #extras} key: this is a bitmap to be used instead of the one from
529 * {@link Builder#setLargeIcon(android.graphics.Bitmap)} when the notification is
530 * shown in its expanded form, as supplied to
531 * {@link BigPictureStyle#bigLargeIcon(android.graphics.Bitmap)}.
532 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400533 public static final String EXTRA_LARGE_ICON_BIG = EXTRA_LARGE_ICON + ".big";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400534
535 /**
536 * {@link #extras} key: this is the progress value supplied to
537 * {@link Builder#setProgress(int, int, boolean)}.
538 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400539 public static final String EXTRA_PROGRESS = "android.progress";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400540
541 /**
542 * {@link #extras} key: this is the maximum value supplied to
543 * {@link Builder#setProgress(int, int, boolean)}.
544 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400545 public static final String EXTRA_PROGRESS_MAX = "android.progressMax";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400546
547 /**
548 * {@link #extras} key: whether the progress bar is indeterminate, supplied to
549 * {@link Builder#setProgress(int, int, boolean)}.
550 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400551 public static final String EXTRA_PROGRESS_INDETERMINATE = "android.progressIndeterminate";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400552
553 /**
554 * {@link #extras} key: whether {@link #when} should be shown as a count-up timer (specifically
555 * a {@link android.widget.Chronometer}) instead of a timestamp, as supplied to
556 * {@link Builder#setUsesChronometer(boolean)}.
557 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400558 public static final String EXTRA_SHOW_CHRONOMETER = "android.showChronometer";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400559
560 /**
561 * {@link #extras} key: whether {@link #when} should be shown,
562 * as supplied to {@link Builder#setShowWhen(boolean)}.
563 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400564 public static final String EXTRA_SHOW_WHEN = "android.showWhen";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400565
566 /**
567 * {@link #extras} key: this is a bitmap to be shown in {@link BigPictureStyle} expanded
568 * notifications, supplied to {@link BigPictureStyle#bigPicture(android.graphics.Bitmap)}.
569 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400570 public static final String EXTRA_PICTURE = "android.picture";
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400571
572 /**
573 * {@link #extras} key: An array of CharSequences to show in {@link InboxStyle} expanded
574 * notifications, each of which was supplied to {@link InboxStyle#addLine(CharSequence)}.
575 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400576 public static final String EXTRA_TEXT_LINES = "android.textLines";
Chris Wren91ad5632013-06-05 15:05:57 -0400577 public static final String EXTRA_TEMPLATE = "android.template";
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400578
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400579 /**
580 * {@link #extras} key: An array of people that this notification relates to, specified
581 * by contacts provider contact URI.
582 */
Daniel Sandlerf45564e2013-04-15 15:05:08 -0400583 public static final String EXTRA_PEOPLE = "android.people";
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500584
585 /**
Scott Greenwald9a05b312013-06-28 00:37:54 -0400586 * @hide
587 * Extra added by NotificationManagerService to indicate whether a NotificationScorer
588 * modified the Notifications's score.
589 */
590 public static final String EXTRA_SCORE_MODIFIED = "android.scoreModified";
591
592 /**
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400593 * Not used.
Chris Wren51c75102013-07-16 20:49:17 -0400594 * @hide
595 */
596 public static final String EXTRA_AS_HEADS_UP = "headsup";
597
598 /**
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400599 * Value for {@link #EXTRA_AS_HEADS_UP}.
Chris Wren51c75102013-07-16 20:49:17 -0400600 * @hide
601 */
602 public static final int HEADS_UP_NEVER = 0;
603
604 /**
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400605 * Default value for {@link #EXTRA_AS_HEADS_UP}.
Chris Wren51c75102013-07-16 20:49:17 -0400606 * @hide
607 */
608 public static final int HEADS_UP_ALLOWED = 1;
609
610 /**
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400611 * Value for {@link #EXTRA_AS_HEADS_UP}.
Chris Wren51c75102013-07-16 20:49:17 -0400612 * @hide
613 */
614 public static final int HEADS_UP_REQUESTED = 2;
615
616 /**
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400617 * Structure to encapsulate a named action that can be shown as part of this notification.
618 * It must include an icon, a label, and a {@link PendingIntent} to be fired when the action is
619 * selected by the user.
620 * <p>
621 * Apps should use {@link Builder#addAction(int, CharSequence, PendingIntent)} to create and
622 * attach actions.
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400623 */
Daniel Sandlerea2a3172013-02-20 22:24:20 -0500624 public static class Action implements Parcelable {
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400625 /**
626 * Small icon representing the action.
627 */
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400628 public int icon;
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400629 /**
630 * Title of the action.
631 */
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400632 public CharSequence title;
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400633 /**
634 * Intent to send when the user invokes this action. May be null, in which case the action
635 * may be rendered in a disabled presentation by the system UI.
636 */
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400637 public PendingIntent actionIntent;
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400638
639 private Action() { }
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400640 private Action(Parcel in) {
641 icon = in.readInt();
642 title = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
643 if (in.readInt() == 1) {
644 actionIntent = PendingIntent.CREATOR.createFromParcel(in);
645 }
646 }
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400647 /**
648 * Use {@link Builder#addAction(int, CharSequence, PendingIntent)}.
649 */
650 public Action(int icon, CharSequence title, PendingIntent intent) {
651 this.icon = icon;
652 this.title = title;
653 this.actionIntent = intent;
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400654 }
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400655
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400656 @Override
657 public Action clone() {
658 return new Action(
659 this.icon,
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400660 this.title,
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400661 this.actionIntent // safe to alias
662 );
663 }
664 @Override
665 public int describeContents() {
666 return 0;
667 }
668 @Override
669 public void writeToParcel(Parcel out, int flags) {
670 out.writeInt(icon);
671 TextUtils.writeToParcel(title, out, flags);
672 if (actionIntent != null) {
673 out.writeInt(1);
674 actionIntent.writeToParcel(out, flags);
675 } else {
676 out.writeInt(0);
677 }
678 }
679 public static final Parcelable.Creator<Action> CREATOR
680 = new Parcelable.Creator<Action>() {
681 public Action createFromParcel(Parcel in) {
682 return new Action(in);
683 }
684 public Action[] newArray(int size) {
685 return new Action[size];
686 }
687 };
688 }
689
Daniel Sandlercf1d39b2013-09-23 13:35:35 -0400690 /**
691 * Array of all {@link Action} structures attached to this notification by
692 * {@link Builder#addAction(int, CharSequence, PendingIntent)}. Mostly useful for instances of
693 * {@link android.service.notification.NotificationListenerService} that provide an alternative
694 * interface for invoking actions.
695 */
Daniel Sandlerea2a3172013-02-20 22:24:20 -0500696 public Action[] actions;
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400697
698 /**
Dan Sandler0bf2ed82013-12-21 23:33:41 -0600699 * Replacement version of this notification whose content will be shown
700 * in an insecure context such as atop a secure keyguard. See {@link #visibility}
701 * and {@link #VISIBILITY_PUBLIC}.
702 */
703 public Notification publicVersion;
704
705 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500706 * Constructs a Notification object with default values.
Joe Onorato46439ce2010-11-19 13:56:21 -0800707 * You might want to consider using {@link Builder} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800708 */
709 public Notification()
710 {
711 this.when = System.currentTimeMillis();
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500712 this.priority = PRIORITY_DEFAULT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800713 }
714
715 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800716 * @hide
717 */
718 public Notification(Context context, int icon, CharSequence tickerText, long when,
719 CharSequence contentTitle, CharSequence contentText, Intent contentIntent)
720 {
721 this.when = when;
722 this.icon = icon;
723 this.tickerText = tickerText;
724 setLatestEventInfo(context, contentTitle, contentText,
725 PendingIntent.getActivity(context, 0, contentIntent, 0));
726 }
727
728 /**
729 * Constructs a Notification object with the information needed to
730 * have a status bar icon without the standard expanded view.
731 *
732 * @param icon The resource id of the icon to put in the status bar.
733 * @param tickerText The text that flows by in the status bar when the notification first
734 * activates.
735 * @param when The time to show in the time field. In the System.currentTimeMillis
736 * timebase.
Joe Onorato46439ce2010-11-19 13:56:21 -0800737 *
738 * @deprecated Use {@link Builder} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800739 */
Joe Onorato46439ce2010-11-19 13:56:21 -0800740 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800741 public Notification(int icon, CharSequence tickerText, long when)
742 {
743 this.icon = icon;
744 this.tickerText = tickerText;
745 this.when = when;
746 }
747
748 /**
749 * Unflatten the notification from a parcel.
750 */
751 public Notification(Parcel parcel)
752 {
753 int version = parcel.readInt();
754
755 when = parcel.readLong();
756 icon = parcel.readInt();
757 number = parcel.readInt();
758 if (parcel.readInt() != 0) {
759 contentIntent = PendingIntent.CREATOR.createFromParcel(parcel);
760 }
761 if (parcel.readInt() != 0) {
762 deleteIntent = PendingIntent.CREATOR.createFromParcel(parcel);
763 }
764 if (parcel.readInt() != 0) {
765 tickerText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(parcel);
766 }
767 if (parcel.readInt() != 0) {
Joe Onorato46439ce2010-11-19 13:56:21 -0800768 tickerView = RemoteViews.CREATOR.createFromParcel(parcel);
Joe Onoratoef1e7762010-09-17 18:38:38 -0400769 }
770 if (parcel.readInt() != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800771 contentView = RemoteViews.CREATOR.createFromParcel(parcel);
772 }
Joe Onorato561d3852010-11-20 18:09:34 -0800773 if (parcel.readInt() != 0) {
774 largeIcon = Bitmap.CREATOR.createFromParcel(parcel);
775 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800776 defaults = parcel.readInt();
777 flags = parcel.readInt();
778 if (parcel.readInt() != 0) {
779 sound = Uri.CREATOR.createFromParcel(parcel);
780 }
781
782 audioStreamType = parcel.readInt();
783 vibrate = parcel.createLongArray();
784 ledARGB = parcel.readInt();
785 ledOnMS = parcel.readInt();
786 ledOffMS = parcel.readInt();
787 iconLevel = parcel.readInt();
Daniel Sandlere46cbd32010-06-17 10:35:26 -0400788
789 if (parcel.readInt() != 0) {
790 fullScreenIntent = PendingIntent.CREATOR.createFromParcel(parcel);
791 }
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500792
793 priority = parcel.readInt();
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400794
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500795 kind = parcel.createStringArray(); // may set kind to null
796
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -0500797 extras = parcel.readBundle(); // may be null
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400798
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -0500799 actions = parcel.createTypedArray(Action.CREATOR); // may be null
800
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400801 if (parcel.readInt() != 0) {
Daniel Sandlerf3b73432012-03-27 15:01:25 -0400802 bigContentView = RemoteViews.CREATOR.createFromParcel(parcel);
803 }
Dan Sandler0bf2ed82013-12-21 23:33:41 -0600804
805 visibility = parcel.readInt();
806
807 if (parcel.readInt() != 0) {
808 publicVersion = Notification.CREATOR.createFromParcel(parcel);
809 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800810 }
811
Andy Stadler110988c2010-12-03 14:29:16 -0800812 @Override
Joe Onorato18e69df2010-05-17 22:26:12 -0700813 public Notification clone() {
814 Notification that = new Notification();
Daniel Sandler1a497d32013-04-18 14:52:45 -0400815 cloneInto(that, true);
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -0500816 return that;
817 }
Joe Onorato18e69df2010-05-17 22:26:12 -0700818
Daniel Sandler1a497d32013-04-18 14:52:45 -0400819 /**
820 * Copy all (or if heavy is false, all except Bitmaps and RemoteViews) members
821 * of this into that.
822 * @hide
823 */
824 public void cloneInto(Notification that, boolean heavy) {
Joe Onorato18e69df2010-05-17 22:26:12 -0700825 that.when = this.when;
826 that.icon = this.icon;
827 that.number = this.number;
828
829 // PendingIntents are global, so there's no reason (or way) to clone them.
830 that.contentIntent = this.contentIntent;
831 that.deleteIntent = this.deleteIntent;
Daniel Sandlere46cbd32010-06-17 10:35:26 -0400832 that.fullScreenIntent = this.fullScreenIntent;
Joe Onorato18e69df2010-05-17 22:26:12 -0700833
834 if (this.tickerText != null) {
835 that.tickerText = this.tickerText.toString();
836 }
Daniel Sandler1a497d32013-04-18 14:52:45 -0400837 if (heavy && this.tickerView != null) {
Joe Onorato46439ce2010-11-19 13:56:21 -0800838 that.tickerView = this.tickerView.clone();
Joe Onoratoef1e7762010-09-17 18:38:38 -0400839 }
Daniel Sandler1a497d32013-04-18 14:52:45 -0400840 if (heavy && this.contentView != null) {
Joe Onorato18e69df2010-05-17 22:26:12 -0700841 that.contentView = this.contentView.clone();
842 }
Daniel Sandler1a497d32013-04-18 14:52:45 -0400843 if (heavy && this.largeIcon != null) {
Joe Onorato561d3852010-11-20 18:09:34 -0800844 that.largeIcon = Bitmap.createBitmap(this.largeIcon);
845 }
Jozef BABJAKa8b91832011-02-22 08:05:08 +0100846 that.iconLevel = this.iconLevel;
Joe Onorato18e69df2010-05-17 22:26:12 -0700847 that.sound = this.sound; // android.net.Uri is immutable
848 that.audioStreamType = this.audioStreamType;
849
850 final long[] vibrate = this.vibrate;
851 if (vibrate != null) {
852 final int N = vibrate.length;
853 final long[] vib = that.vibrate = new long[N];
854 System.arraycopy(vibrate, 0, vib, 0, N);
855 }
856
857 that.ledARGB = this.ledARGB;
858 that.ledOnMS = this.ledOnMS;
859 that.ledOffMS = this.ledOffMS;
860 that.defaults = this.defaults;
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500861
Joe Onorato18e69df2010-05-17 22:26:12 -0700862 that.flags = this.flags;
863
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500864 that.priority = this.priority;
Joe Malin8d40d042012-11-05 11:36:40 -0800865
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500866 final String[] thiskind = this.kind;
867 if (thiskind != null) {
868 final int N = thiskind.length;
869 final String[] thatkind = that.kind = new String[N];
870 System.arraycopy(thiskind, 0, thatkind, 0, N);
871 }
872
873 if (this.extras != null) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -0400874 try {
875 that.extras = new Bundle(this.extras);
876 // will unparcel
877 that.extras.size();
878 } catch (BadParcelableException e) {
879 Log.e(TAG, "could not unparcel extras from notification: " + this, e);
880 that.extras = null;
881 }
Daniel Sandler2561b0b2012-02-13 21:04:12 -0500882 }
883
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -0500884 if (this.actions != null) {
885 that.actions = new Action[this.actions.length];
886 for(int i=0; i<this.actions.length; i++) {
887 that.actions[i] = this.actions[i].clone();
888 }
Daniel Sandlera0a938c2012-03-15 08:42:37 -0400889 }
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -0500890
Daniel Sandler1a497d32013-04-18 14:52:45 -0400891 if (heavy && this.bigContentView != null) {
Daniel Sandlerf3b73432012-03-27 15:01:25 -0400892 that.bigContentView = this.bigContentView.clone();
893 }
Daniel Sandler1a497d32013-04-18 14:52:45 -0400894
Dan Sandler0bf2ed82013-12-21 23:33:41 -0600895 that.visibility = this.visibility;
896
897 if (this.publicVersion != null) {
898 that.publicVersion = new Notification();
899 this.publicVersion.cloneInto(that.publicVersion, heavy);
900 }
901
Daniel Sandler1a497d32013-04-18 14:52:45 -0400902 if (!heavy) {
903 that.lightenPayload(); // will clean out extras
904 }
905 }
906
907 /**
908 * Removes heavyweight parts of the Notification object for archival or for sending to
909 * listeners when the full contents are not necessary.
910 * @hide
911 */
912 public final void lightenPayload() {
913 tickerView = null;
914 contentView = null;
915 bigContentView = null;
916 largeIcon = null;
917 if (extras != null) {
918 extras.remove(Notification.EXTRA_LARGE_ICON);
919 extras.remove(Notification.EXTRA_LARGE_ICON_BIG);
920 extras.remove(Notification.EXTRA_PICTURE);
921 }
Joe Onorato18e69df2010-05-17 22:26:12 -0700922 }
923
Daniel Sandlerdcbaf662013-04-26 16:23:09 -0400924 /**
925 * Make sure this CharSequence is safe to put into a bundle, which basically
926 * means it had better not be some custom Parcelable implementation.
927 * @hide
928 */
929 public static CharSequence safeCharSequence(CharSequence cs) {
930 if (cs instanceof Parcelable) {
931 Log.e(TAG, "warning: " + cs.getClass().getCanonicalName()
932 + " instance is a custom Parcelable and not allowed in Notification");
933 return cs.toString();
934 }
935
936 return cs;
937 }
938
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800939 public int describeContents() {
940 return 0;
941 }
942
943 /**
944 * Flatten this notification from a parcel.
945 */
946 public void writeToParcel(Parcel parcel, int flags)
947 {
948 parcel.writeInt(1);
949
950 parcel.writeLong(when);
951 parcel.writeInt(icon);
952 parcel.writeInt(number);
953 if (contentIntent != null) {
954 parcel.writeInt(1);
955 contentIntent.writeToParcel(parcel, 0);
956 } else {
957 parcel.writeInt(0);
958 }
959 if (deleteIntent != null) {
960 parcel.writeInt(1);
961 deleteIntent.writeToParcel(parcel, 0);
962 } else {
963 parcel.writeInt(0);
964 }
965 if (tickerText != null) {
966 parcel.writeInt(1);
967 TextUtils.writeToParcel(tickerText, parcel, flags);
968 } else {
969 parcel.writeInt(0);
970 }
Joe Onorato46439ce2010-11-19 13:56:21 -0800971 if (tickerView != null) {
Joe Onoratoef1e7762010-09-17 18:38:38 -0400972 parcel.writeInt(1);
Joe Onorato46439ce2010-11-19 13:56:21 -0800973 tickerView.writeToParcel(parcel, 0);
Joe Onoratoef1e7762010-09-17 18:38:38 -0400974 } else {
975 parcel.writeInt(0);
976 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800977 if (contentView != null) {
978 parcel.writeInt(1);
979 contentView.writeToParcel(parcel, 0);
980 } else {
981 parcel.writeInt(0);
982 }
Joe Onorato561d3852010-11-20 18:09:34 -0800983 if (largeIcon != null) {
984 parcel.writeInt(1);
985 largeIcon.writeToParcel(parcel, 0);
986 } else {
987 parcel.writeInt(0);
988 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800989
990 parcel.writeInt(defaults);
991 parcel.writeInt(this.flags);
992
993 if (sound != null) {
994 parcel.writeInt(1);
995 sound.writeToParcel(parcel, 0);
996 } else {
997 parcel.writeInt(0);
998 }
999 parcel.writeInt(audioStreamType);
1000 parcel.writeLongArray(vibrate);
1001 parcel.writeInt(ledARGB);
1002 parcel.writeInt(ledOnMS);
1003 parcel.writeInt(ledOffMS);
1004 parcel.writeInt(iconLevel);
Daniel Sandlere46cbd32010-06-17 10:35:26 -04001005
1006 if (fullScreenIntent != null) {
1007 parcel.writeInt(1);
1008 fullScreenIntent.writeToParcel(parcel, 0);
1009 } else {
1010 parcel.writeInt(0);
1011 }
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001012
1013 parcel.writeInt(priority);
Joe Malin8d40d042012-11-05 11:36:40 -08001014
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001015 parcel.writeStringArray(kind); // ok for null
Joe Malin8d40d042012-11-05 11:36:40 -08001016
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -05001017 parcel.writeBundle(extras); // null ok
Daniel Sandlera0a938c2012-03-15 08:42:37 -04001018
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -05001019 parcel.writeTypedArray(actions, 0); // null ok
Daniel Sandlera0a938c2012-03-15 08:42:37 -04001020
Daniel Sandlerf3b73432012-03-27 15:01:25 -04001021 if (bigContentView != null) {
1022 parcel.writeInt(1);
1023 bigContentView.writeToParcel(parcel, 0);
1024 } else {
1025 parcel.writeInt(0);
1026 }
Dan Sandler0bf2ed82013-12-21 23:33:41 -06001027
1028 parcel.writeInt(visibility);
1029
1030 if (publicVersion != null) {
1031 parcel.writeInt(1);
1032 publicVersion.writeToParcel(parcel, 0);
1033 } else {
1034 parcel.writeInt(0);
1035 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001036 }
1037
1038 /**
1039 * Parcelable.Creator that instantiates Notification objects
1040 */
1041 public static final Parcelable.Creator<Notification> CREATOR
1042 = new Parcelable.Creator<Notification>()
1043 {
1044 public Notification createFromParcel(Parcel parcel)
1045 {
1046 return new Notification(parcel);
1047 }
1048
1049 public Notification[] newArray(int size)
1050 {
1051 return new Notification[size];
1052 }
1053 };
1054
1055 /**
1056 * Sets the {@link #contentView} field to be a view with the standard "Latest Event"
1057 * layout.
1058 *
1059 * <p>Uses the {@link #icon} and {@link #when} fields to set the icon and time fields
1060 * in the view.</p>
1061 * @param context The context for your application / activity.
1062 * @param contentTitle The title that goes in the expanded entry.
1063 * @param contentText The text that goes in the expanded entry.
1064 * @param contentIntent The intent to launch when the user clicks the expanded notification.
1065 * If this is an activity, it must include the
1066 * {@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK} flag, which requires
Scott Main7aee61f2011-02-08 11:25:01 -08001067 * that you take care of task management as described in the
1068 * <a href="{@docRoot}guide/topics/fundamentals/tasks-and-back-stack.html">Tasks and Back
1069 * Stack</a> document.
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001070 *
Joe Onorato46439ce2010-11-19 13:56:21 -08001071 * @deprecated Use {@link Builder} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001072 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001073 @Deprecated
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001074 public void setLatestEventInfo(Context context,
1075 CharSequence contentTitle, CharSequence contentText, PendingIntent contentIntent) {
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -05001076 Notification.Builder builder = new Notification.Builder(context);
1077
1078 // First, ensure that key pieces of information that may have been set directly
1079 // are preserved
1080 builder.setWhen(this.when);
1081 builder.setSmallIcon(this.icon);
1082 builder.setPriority(this.priority);
1083 builder.setTicker(this.tickerText);
1084 builder.setNumber(this.number);
1085 builder.mFlags = this.flags;
1086 builder.setSound(this.sound, this.audioStreamType);
1087 builder.setDefaults(this.defaults);
1088 builder.setVibrate(this.vibrate);
1089
1090 // now apply the latestEventInfo fields
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001091 if (contentTitle != null) {
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -05001092 builder.setContentTitle(contentTitle);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001093 }
1094 if (contentText != null) {
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -05001095 builder.setContentText(contentText);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001096 }
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -05001097 builder.setContentIntent(contentIntent);
1098 builder.buildInto(this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001099 }
1100
1101 @Override
1102 public String toString() {
1103 StringBuilder sb = new StringBuilder();
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001104 sb.append("Notification(pri=");
1105 sb.append(priority);
1106 sb.append(" contentView=");
Joe Onoratoc9596d62011-01-12 17:03:11 -08001107 if (contentView != null) {
1108 sb.append(contentView.getPackage());
1109 sb.append("/0x");
1110 sb.append(Integer.toHexString(contentView.getLayoutId()));
1111 } else {
1112 sb.append("null");
1113 }
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001114 // TODO(dsandler): defaults take precedence over local values, so reorder the branches below
Joe Onoratoc9596d62011-01-12 17:03:11 -08001115 sb.append(" vibrate=");
Daniel Sandler6738eee2012-11-16 12:03:32 -05001116 if ((this.defaults & DEFAULT_VIBRATE) != 0) {
1117 sb.append("default");
1118 } else if (this.vibrate != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001119 int N = this.vibrate.length-1;
1120 sb.append("[");
1121 for (int i=0; i<N; i++) {
1122 sb.append(this.vibrate[i]);
1123 sb.append(',');
1124 }
Simon Schoar8cf97d92009-06-10 22:08:37 +02001125 if (N != -1) {
1126 sb.append(this.vibrate[N]);
1127 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001128 sb.append("]");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001129 } else {
1130 sb.append("null");
1131 }
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001132 sb.append(" sound=");
Daniel Sandler6738eee2012-11-16 12:03:32 -05001133 if ((this.defaults & DEFAULT_SOUND) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001134 sb.append("default");
Daniel Sandler6738eee2012-11-16 12:03:32 -05001135 } else if (this.sound != null) {
1136 sb.append(this.sound.toString());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001137 } else {
1138 sb.append("null");
1139 }
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001140 sb.append(" defaults=0x");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001141 sb.append(Integer.toHexString(this.defaults));
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001142 sb.append(" flags=0x");
Daniel Sandlere46cbd32010-06-17 10:35:26 -04001143 sb.append(Integer.toHexString(this.flags));
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001144 sb.append(" kind=[");
1145 if (this.kind == null) {
1146 sb.append("null");
1147 } else {
1148 for (int i=0; i<this.kind.length; i++) {
1149 if (i>0) sb.append(",");
1150 sb.append(this.kind[i]);
1151 }
Daniel Sandlere46cbd32010-06-17 10:35:26 -04001152 }
Daniel Sandlera0a938c2012-03-15 08:42:37 -04001153 sb.append("]");
1154 if (actions != null) {
1155 sb.append(" ");
1156 sb.append(actions.length);
1157 sb.append(" action");
1158 if (actions.length > 1) sb.append("s");
1159 }
1160 sb.append(")");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001161 return sb.toString();
1162 }
Joe Onorato46439ce2010-11-19 13:56:21 -08001163
Jeff Sharkey6d515712012-09-20 16:06:08 -07001164 /** {@hide} */
1165 public void setUser(UserHandle user) {
Amith Yamasaniecbd68b2012-11-02 12:17:19 -07001166 if (user.getIdentifier() == UserHandle.USER_ALL) {
1167 user = UserHandle.OWNER;
1168 }
Jeff Sharkey6d515712012-09-20 16:06:08 -07001169 if (tickerView != null) {
1170 tickerView.setUser(user);
1171 }
1172 if (contentView != null) {
1173 contentView.setUser(user);
1174 }
1175 if (bigContentView != null) {
1176 bigContentView.setUser(user);
1177 }
1178 }
1179
Joe Onoratocb109a02011-01-18 17:57:41 -08001180 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001181 * Builder class for {@link Notification} objects.
Joe Malin8d40d042012-11-05 11:36:40 -08001182 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001183 * Provides a convenient way to set the various fields of a {@link Notification} and generate
Scott Main183bf112012-08-13 19:12:13 -07001184 * content views using the platform's notification layout template. If your app supports
1185 * versions of Android as old as API level 4, you can instead use
1186 * {@link android.support.v4.app.NotificationCompat.Builder NotificationCompat.Builder},
1187 * available in the <a href="{@docRoot}tools/extras/support-library.html">Android Support
1188 * library</a>.
Joe Malin8d40d042012-11-05 11:36:40 -08001189 *
Scott Main183bf112012-08-13 19:12:13 -07001190 * <p>Example:
Joe Malin8d40d042012-11-05 11:36:40 -08001191 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001192 * <pre class="prettyprint">
Scott Main183bf112012-08-13 19:12:13 -07001193 * Notification noti = new Notification.Builder(mContext)
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001194 * .setContentTitle(&quot;New mail from &quot; + sender.toString())
1195 * .setContentText(subject)
1196 * .setSmallIcon(R.drawable.new_mail)
1197 * .setLargeIcon(aBitmap)
Chris Wrenfbd96ba2012-05-01 12:03:58 -04001198 * .build();
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001199 * </pre>
Joe Onoratocb109a02011-01-18 17:57:41 -08001200 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001201 public static class Builder {
Daniel Sandler602ad1c2012-06-12 16:06:27 -04001202 private static final int MAX_ACTION_BUTTONS = 3;
Daniel Sandler8680bf82012-05-15 16:52:52 -04001203
Joe Onorato46439ce2010-11-19 13:56:21 -08001204 private Context mContext;
1205
1206 private long mWhen;
1207 private int mSmallIcon;
1208 private int mSmallIconLevel;
Joe Onorato8595a3d2010-11-19 18:12:07 -08001209 private int mNumber;
Joe Onorato46439ce2010-11-19 13:56:21 -08001210 private CharSequence mContentTitle;
1211 private CharSequence mContentText;
1212 private CharSequence mContentInfo;
Daniel Sandlerf3b73432012-03-27 15:01:25 -04001213 private CharSequence mSubText;
Joe Onorato46439ce2010-11-19 13:56:21 -08001214 private PendingIntent mContentIntent;
1215 private RemoteViews mContentView;
1216 private PendingIntent mDeleteIntent;
1217 private PendingIntent mFullScreenIntent;
1218 private CharSequence mTickerText;
1219 private RemoteViews mTickerView;
1220 private Bitmap mLargeIcon;
1221 private Uri mSound;
1222 private int mAudioStreamType;
1223 private long[] mVibrate;
1224 private int mLedArgb;
1225 private int mLedOnMs;
1226 private int mLedOffMs;
1227 private int mDefaults;
1228 private int mFlags;
Jeff Sharkey1c400132011-08-05 14:50:13 -07001229 private int mProgressMax;
1230 private int mProgress;
1231 private boolean mProgressIndeterminate;
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001232 private ArrayList<String> mKindList = new ArrayList<String>(1);
1233 private Bundle mExtras;
1234 private int mPriority;
Daniel Sandler8680bf82012-05-15 16:52:52 -04001235 private ArrayList<Action> mActions = new ArrayList<Action>(MAX_ACTION_BUTTONS);
Daniel Sandlera2985ed2012-04-03 16:42:00 -04001236 private boolean mUseChronometer;
Chris Wrenfbd96ba2012-05-01 12:03:58 -04001237 private Style mStyle;
Daniel Sandler0c890492012-09-12 17:23:10 -07001238 private boolean mShowWhen = true;
Dan Sandler0bf2ed82013-12-21 23:33:41 -06001239 private int mVisibility = VISIBILITY_PRIVATE;
1240 private Notification mPublicVersion = null;
Joe Onorato46439ce2010-11-19 13:56:21 -08001241
Joe Onoratocb109a02011-01-18 17:57:41 -08001242 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001243 * Constructs a new Builder with the defaults:
Joe Onoratocb109a02011-01-18 17:57:41 -08001244 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001245
1246 * <table>
1247 * <tr><th align=right>priority</th>
1248 * <td>{@link #PRIORITY_DEFAULT}</td></tr>
1249 * <tr><th align=right>when</th>
1250 * <td>now ({@link System#currentTimeMillis()})</td></tr>
1251 * <tr><th align=right>audio stream</th>
1252 * <td>{@link #STREAM_DEFAULT}</td></tr>
1253 * </table>
Joe Onoratocb109a02011-01-18 17:57:41 -08001254 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001255
1256 * @param context
1257 * A {@link Context} that will be used by the Builder to construct the
1258 * RemoteViews. The Context will not be held past the lifetime of this Builder
1259 * object.
Joe Onoratocb109a02011-01-18 17:57:41 -08001260 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001261 public Builder(Context context) {
1262 mContext = context;
Andy Stadler110988c2010-12-03 14:29:16 -08001263
1264 // Set defaults to match the defaults of a Notification
Joe Onorato46439ce2010-11-19 13:56:21 -08001265 mWhen = System.currentTimeMillis();
Andy Stadler110988c2010-12-03 14:29:16 -08001266 mAudioStreamType = STREAM_DEFAULT;
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001267 mPriority = PRIORITY_DEFAULT;
Joe Onorato46439ce2010-11-19 13:56:21 -08001268 }
1269
Joe Onoratocb109a02011-01-18 17:57:41 -08001270 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001271 * Add a timestamp pertaining to the notification (usually the time the event occurred).
Daniel Sandler0c890492012-09-12 17:23:10 -07001272 * It will be shown in the notification content view by default; use
1273 * {@link Builder#setShowWhen(boolean) setShowWhen} to control this.
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001274 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001275 * @see Notification#when
Joe Onoratocb109a02011-01-18 17:57:41 -08001276 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001277 public Builder setWhen(long when) {
1278 mWhen = when;
1279 return this;
1280 }
1281
Joe Onoratocb109a02011-01-18 17:57:41 -08001282 /**
Daniel Sandler0c890492012-09-12 17:23:10 -07001283 * Control whether the timestamp set with {@link Builder#setWhen(long) setWhen} is shown
1284 * in the content view.
1285 */
1286 public Builder setShowWhen(boolean show) {
1287 mShowWhen = show;
1288 return this;
1289 }
1290
1291 /**
Daniel Sandlerd33b8032012-05-10 11:41:48 -04001292 * Show the {@link Notification#when} field as a stopwatch.
Joe Malin8d40d042012-11-05 11:36:40 -08001293 *
1294 * Instead of presenting <code>when</code> as a timestamp, the notification will show an
Daniel Sandlerd33b8032012-05-10 11:41:48 -04001295 * automatically updating display of the minutes and seconds since <code>when</code>.
Daniel Sandlera2985ed2012-04-03 16:42:00 -04001296 *
Daniel Sandlerd33b8032012-05-10 11:41:48 -04001297 * Useful when showing an elapsed time (like an ongoing phone call).
1298 *
1299 * @see android.widget.Chronometer
Daniel Sandlera2985ed2012-04-03 16:42:00 -04001300 * @see Notification#when
1301 */
1302 public Builder setUsesChronometer(boolean b) {
1303 mUseChronometer = b;
1304 return this;
1305 }
1306
1307 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001308 * Set the small icon resource, which will be used to represent the notification in the
1309 * status bar.
Joe Onoratocb109a02011-01-18 17:57:41 -08001310 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001311
1312 * The platform template for the expanded view will draw this icon in the left, unless a
1313 * {@link #setLargeIcon(Bitmap) large icon} has also been specified, in which case the small
1314 * icon will be moved to the right-hand side.
1315 *
1316
1317 * @param icon
1318 * A resource ID in the application's package of the drawable to use.
1319 * @see Notification#icon
Joe Onoratocb109a02011-01-18 17:57:41 -08001320 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001321 public Builder setSmallIcon(int icon) {
1322 mSmallIcon = icon;
1323 return this;
1324 }
1325
Joe Onoratocb109a02011-01-18 17:57:41 -08001326 /**
1327 * A variant of {@link #setSmallIcon(int) setSmallIcon(int)} that takes an additional
1328 * level parameter for when the icon is a {@link android.graphics.drawable.LevelListDrawable
1329 * LevelListDrawable}.
1330 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001331 * @param icon A resource ID in the application's package of the drawable to use.
Joe Onoratocb109a02011-01-18 17:57:41 -08001332 * @param level The level to use for the icon.
1333 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001334 * @see Notification#icon
1335 * @see Notification#iconLevel
Joe Onoratocb109a02011-01-18 17:57:41 -08001336 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001337 public Builder setSmallIcon(int icon, int level) {
1338 mSmallIcon = icon;
1339 mSmallIconLevel = level;
1340 return this;
1341 }
1342
Joe Onoratocb109a02011-01-18 17:57:41 -08001343 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001344 * Set the first line of text in the platform notification template.
Joe Onoratocb109a02011-01-18 17:57:41 -08001345 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001346 public Builder setContentTitle(CharSequence title) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04001347 mContentTitle = safeCharSequence(title);
Joe Onorato46439ce2010-11-19 13:56:21 -08001348 return this;
1349 }
1350
Joe Onoratocb109a02011-01-18 17:57:41 -08001351 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001352 * Set the second line of text in the platform notification template.
Joe Onoratocb109a02011-01-18 17:57:41 -08001353 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001354 public Builder setContentText(CharSequence text) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04001355 mContentText = safeCharSequence(text);
Joe Onorato46439ce2010-11-19 13:56:21 -08001356 return this;
1357 }
1358
Joe Onoratocb109a02011-01-18 17:57:41 -08001359 /**
Joe Malin8d40d042012-11-05 11:36:40 -08001360 * Set the third line of text in the platform notification template.
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04001361 * Don't use if you're also using {@link #setProgress(int, int, boolean)}; they occupy the
1362 * same location in the standard template.
Daniel Sandlerf3b73432012-03-27 15:01:25 -04001363 */
1364 public Builder setSubText(CharSequence text) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04001365 mSubText = safeCharSequence(text);
Daniel Sandlerf3b73432012-03-27 15:01:25 -04001366 return this;
1367 }
1368
1369 /**
Joe Onoratocb109a02011-01-18 17:57:41 -08001370 * Set the large number at the right-hand side of the notification. This is
1371 * equivalent to setContentInfo, although it might show the number in a different
1372 * font size for readability.
1373 */
Joe Onorato8595a3d2010-11-19 18:12:07 -08001374 public Builder setNumber(int number) {
1375 mNumber = number;
1376 return this;
1377 }
1378
Joe Onoratocb109a02011-01-18 17:57:41 -08001379 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001380 * A small piece of additional information pertaining to this notification.
1381 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001382 * The platform template will draw this on the last line of the notification, at the far
1383 * right (to the right of a smallIcon if it has been placed there).
Joe Onoratocb109a02011-01-18 17:57:41 -08001384 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001385 public Builder setContentInfo(CharSequence info) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04001386 mContentInfo = safeCharSequence(info);
Joe Onorato46439ce2010-11-19 13:56:21 -08001387 return this;
1388 }
1389
Joe Onoratocb109a02011-01-18 17:57:41 -08001390 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001391 * Set the progress this notification represents.
1392 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001393 * The platform template will represent this using a {@link ProgressBar}.
Jeff Sharkey1c400132011-08-05 14:50:13 -07001394 */
1395 public Builder setProgress(int max, int progress, boolean indeterminate) {
1396 mProgressMax = max;
1397 mProgress = progress;
1398 mProgressIndeterminate = indeterminate;
1399 return this;
1400 }
1401
1402 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001403 * Supply a custom RemoteViews to use instead of the platform template.
1404 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001405 * @see Notification#contentView
Joe Onoratocb109a02011-01-18 17:57:41 -08001406 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001407 public Builder setContent(RemoteViews views) {
1408 mContentView = views;
1409 return this;
1410 }
1411
Joe Onoratocb109a02011-01-18 17:57:41 -08001412 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001413 * Supply a {@link PendingIntent} to be sent when the notification is clicked.
1414 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001415 * As of {@link android.os.Build.VERSION_CODES#HONEYCOMB}, if this field is unset and you
1416 * have specified a custom RemoteViews with {@link #setContent(RemoteViews)}, you can use
1417 * {@link RemoteViews#setOnClickPendingIntent RemoteViews.setOnClickPendingIntent(int,PendingIntent)}
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001418 * to assign PendingIntents to individual views in that custom layout (i.e., to create
Daniel Sandlerf3b73432012-03-27 15:01:25 -04001419 * clickable buttons inside the notification view).
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001420 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001421 * @see Notification#contentIntent Notification.contentIntent
Joe Onoratocb109a02011-01-18 17:57:41 -08001422 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001423 public Builder setContentIntent(PendingIntent intent) {
1424 mContentIntent = intent;
1425 return this;
1426 }
1427
Joe Onoratocb109a02011-01-18 17:57:41 -08001428 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001429 * Supply a {@link PendingIntent} to send when the notification is cleared explicitly by the user.
1430 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001431 * @see Notification#deleteIntent
Joe Onoratocb109a02011-01-18 17:57:41 -08001432 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001433 public Builder setDeleteIntent(PendingIntent intent) {
1434 mDeleteIntent = intent;
1435 return this;
1436 }
1437
Joe Onoratocb109a02011-01-18 17:57:41 -08001438 /**
1439 * An intent to launch instead of posting the notification to the status bar.
1440 * Only for use with extremely high-priority notifications demanding the user's
1441 * <strong>immediate</strong> attention, such as an incoming phone call or
1442 * alarm clock that the user has explicitly set to a particular time.
1443 * If this facility is used for something else, please give the user an option
1444 * to turn it off and use a normal notification, as this can be extremely
1445 * disruptive.
1446 *
1447 * @param intent The pending intent to launch.
1448 * @param highPriority Passing true will cause this notification to be sent
1449 * even if other notifications are suppressed.
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001450 *
1451 * @see Notification#fullScreenIntent
Joe Onoratocb109a02011-01-18 17:57:41 -08001452 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001453 public Builder setFullScreenIntent(PendingIntent intent, boolean highPriority) {
1454 mFullScreenIntent = intent;
1455 setFlag(FLAG_HIGH_PRIORITY, highPriority);
1456 return this;
1457 }
1458
Joe Onoratocb109a02011-01-18 17:57:41 -08001459 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001460 * Set the "ticker" text which is displayed in the status bar when the notification first
Joe Onoratocb109a02011-01-18 17:57:41 -08001461 * arrives.
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001462 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001463 * @see Notification#tickerText
Joe Onoratocb109a02011-01-18 17:57:41 -08001464 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001465 public Builder setTicker(CharSequence tickerText) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04001466 mTickerText = safeCharSequence(tickerText);
Joe Onorato46439ce2010-11-19 13:56:21 -08001467 return this;
1468 }
1469
Joe Onoratocb109a02011-01-18 17:57:41 -08001470 /**
1471 * Set the text that is displayed in the status bar when the notification first
1472 * arrives, and also a RemoteViews object that may be displayed instead on some
1473 * devices.
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001474 *
1475 * @see Notification#tickerText
1476 * @see Notification#tickerView
Joe Onoratocb109a02011-01-18 17:57:41 -08001477 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001478 public Builder setTicker(CharSequence tickerText, RemoteViews views) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04001479 mTickerText = safeCharSequence(tickerText);
Joe Onorato46439ce2010-11-19 13:56:21 -08001480 mTickerView = views;
1481 return this;
1482 }
1483
Joe Onoratocb109a02011-01-18 17:57:41 -08001484 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001485 * Add a large icon to the notification (and the ticker on some devices).
1486 *
1487 * In the platform template, this image will be shown on the left of the notification view
1488 * in place of the {@link #setSmallIcon(int) small icon} (which will move to the right side).
1489 *
1490 * @see Notification#largeIcon
Joe Onoratocb109a02011-01-18 17:57:41 -08001491 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001492 public Builder setLargeIcon(Bitmap icon) {
1493 mLargeIcon = icon;
1494 return this;
1495 }
1496
Joe Onoratocb109a02011-01-18 17:57:41 -08001497 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001498 * Set the sound to play.
1499 *
1500 * It will be played on the {@link #STREAM_DEFAULT default stream} for notifications.
1501 *
1502 * @see Notification#sound
Joe Onoratocb109a02011-01-18 17:57:41 -08001503 */
Joe Onorato52f80cd2010-11-21 15:34:48 -08001504 public Builder setSound(Uri sound) {
1505 mSound = sound;
1506 mAudioStreamType = STREAM_DEFAULT;
1507 return this;
1508 }
1509
Joe Onoratocb109a02011-01-18 17:57:41 -08001510 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001511 * Set the sound to play, along with a specific stream on which to play it.
Joe Onoratocb109a02011-01-18 17:57:41 -08001512 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001513 * See {@link android.media.AudioManager} for the <code>STREAM_</code> constants.
1514 *
1515 * @see Notification#sound
Joe Onoratocb109a02011-01-18 17:57:41 -08001516 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001517 public Builder setSound(Uri sound, int streamType) {
1518 mSound = sound;
1519 mAudioStreamType = streamType;
1520 return this;
1521 }
1522
Joe Onoratocb109a02011-01-18 17:57:41 -08001523 /**
1524 * Set the vibration pattern to use.
1525 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001526
1527 * See {@link android.os.Vibrator#vibrate(long[], int)} for a discussion of the
1528 * <code>pattern</code> parameter.
1529 *
1530
1531 * @see Notification#vibrate
Joe Onoratocb109a02011-01-18 17:57:41 -08001532 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001533 public Builder setVibrate(long[] pattern) {
1534 mVibrate = pattern;
1535 return this;
1536 }
1537
Joe Onoratocb109a02011-01-18 17:57:41 -08001538 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001539 * Set the desired color for the indicator LED on the device, as well as the
1540 * blink duty cycle (specified in milliseconds).
1541 *
1542
1543 * Not all devices will honor all (or even any) of these values.
1544 *
1545
1546 * @see Notification#ledARGB
1547 * @see Notification#ledOnMS
1548 * @see Notification#ledOffMS
Joe Onoratocb109a02011-01-18 17:57:41 -08001549 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001550 public Builder setLights(int argb, int onMs, int offMs) {
1551 mLedArgb = argb;
1552 mLedOnMs = onMs;
1553 mLedOffMs = offMs;
Joe Onorato46439ce2010-11-19 13:56:21 -08001554 return this;
1555 }
1556
Joe Onoratocb109a02011-01-18 17:57:41 -08001557 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001558 * Set whether this is an "ongoing" notification.
Joe Onoratocb109a02011-01-18 17:57:41 -08001559 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001560
1561 * Ongoing notifications cannot be dismissed by the user, so your application or service
1562 * must take care of canceling them.
1563 *
1564
1565 * They are typically used to indicate a background task that the user is actively engaged
1566 * with (e.g., playing music) or is pending in some way and therefore occupying the device
1567 * (e.g., a file download, sync operation, active network connection).
1568 *
1569
1570 * @see Notification#FLAG_ONGOING_EVENT
1571 * @see Service#setForeground(boolean)
Joe Onoratocb109a02011-01-18 17:57:41 -08001572 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001573 public Builder setOngoing(boolean ongoing) {
1574 setFlag(FLAG_ONGOING_EVENT, ongoing);
1575 return this;
1576 }
1577
Joe Onoratocb109a02011-01-18 17:57:41 -08001578 /**
1579 * Set this flag if you would only like the sound, vibrate
1580 * and ticker to be played if the notification is not already showing.
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001581 *
1582 * @see Notification#FLAG_ONLY_ALERT_ONCE
Joe Onoratocb109a02011-01-18 17:57:41 -08001583 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001584 public Builder setOnlyAlertOnce(boolean onlyAlertOnce) {
1585 setFlag(FLAG_ONLY_ALERT_ONCE, onlyAlertOnce);
1586 return this;
1587 }
1588
Joe Onoratocb109a02011-01-18 17:57:41 -08001589 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001590 * Make this notification automatically dismissed when the user touches it. The
1591 * PendingIntent set with {@link #setDeleteIntent} will be sent when this happens.
1592 *
1593 * @see Notification#FLAG_AUTO_CANCEL
Joe Onoratocb109a02011-01-18 17:57:41 -08001594 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001595 public Builder setAutoCancel(boolean autoCancel) {
Joe Onorato281d83f2011-01-04 17:13:10 -08001596 setFlag(FLAG_AUTO_CANCEL, autoCancel);
Joe Onorato46439ce2010-11-19 13:56:21 -08001597 return this;
1598 }
1599
Joe Onoratocb109a02011-01-18 17:57:41 -08001600 /**
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001601 * Set which notification properties will be inherited from system defaults.
Joe Onoratocb109a02011-01-18 17:57:41 -08001602 * <p>
1603 * The value should be one or more of the following fields combined with
1604 * bitwise-or:
1605 * {@link #DEFAULT_SOUND}, {@link #DEFAULT_VIBRATE}, {@link #DEFAULT_LIGHTS}.
1606 * <p>
1607 * For all default values, use {@link #DEFAULT_ALL}.
1608 */
Joe Onorato46439ce2010-11-19 13:56:21 -08001609 public Builder setDefaults(int defaults) {
1610 mDefaults = defaults;
1611 return this;
1612 }
1613
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001614 /**
1615 * Set the priority of this notification.
1616 *
1617 * @see Notification#priority
1618 */
Tor Norbyed9273d62013-05-30 15:59:53 -07001619 public Builder setPriority(@Priority int pri) {
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001620 mPriority = pri;
1621 return this;
1622 }
Joe Malin8d40d042012-11-05 11:36:40 -08001623
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001624 /**
Daniel Sandlerd33b8032012-05-10 11:41:48 -04001625 * @hide
Joe Malin8d40d042012-11-05 11:36:40 -08001626 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001627 * Add a kind (category) to this notification. Optional.
Joe Malin8d40d042012-11-05 11:36:40 -08001628 *
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001629 * @see Notification#kind
1630 */
1631 public Builder addKind(String k) {
1632 mKindList.add(k);
1633 return this;
1634 }
1635
1636 /**
1637 * Add metadata to this notification.
1638 *
1639 * A reference to the Bundle is held for the lifetime of this Builder, and the Bundle's
Chris Wrenfbd96ba2012-05-01 12:03:58 -04001640 * current contents are copied into the Notification each time {@link #build()} is
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001641 * called.
1642 *
1643 * @see Notification#extras
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001644 */
1645 public Builder setExtras(Bundle bag) {
1646 mExtras = bag;
1647 return this;
1648 }
1649
Daniel Sandlera0a938c2012-03-15 08:42:37 -04001650 /**
1651 * Add an action to this notification. Actions are typically displayed by
1652 * the system as a button adjacent to the notification content.
Daniel Sandlercf1d39b2013-09-23 13:35:35 -04001653 * <p>
1654 * Every action must have an icon (32dp square and matching the
1655 * <a href="{@docRoot}design/style/iconography.html#action-bar">Holo
1656 * Dark action bar</a> visual style), a textual label, and a {@link PendingIntent}.
1657 * <p>
1658 * A notification in its expanded form can display up to 3 actions, from left to right in
1659 * the order they were added. Actions will not be displayed when the notification is
1660 * collapsed, however, so be sure that any essential functions may be accessed by the user
1661 * in some other way (for example, in the Activity pointed to by {@link #contentIntent}).
Daniel Sandlera0a938c2012-03-15 08:42:37 -04001662 *
1663 * @param icon Resource ID of a drawable that represents the action.
1664 * @param title Text describing the action.
1665 * @param intent PendingIntent to be fired when the action is invoked.
1666 */
1667 public Builder addAction(int icon, CharSequence title, PendingIntent intent) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04001668 mActions.add(new Action(icon, safeCharSequence(title), intent));
Daniel Sandlera0a938c2012-03-15 08:42:37 -04001669 return this;
1670 }
1671
Chris Wrenfbd96ba2012-05-01 12:03:58 -04001672 /**
1673 * Add a rich notification style to be applied at build time.
1674 *
1675 * @param style Object responsible for modifying the notification style.
1676 */
1677 public Builder setStyle(Style style) {
1678 if (mStyle != style) {
1679 mStyle = style;
Daniel Sandlerc08dea22012-06-28 08:35:24 -07001680 if (mStyle != null) {
1681 mStyle.setBuilder(this);
1682 }
Chris Wrenfbd96ba2012-05-01 12:03:58 -04001683 }
1684 return this;
1685 }
1686
Dan Sandler0bf2ed82013-12-21 23:33:41 -06001687 /**
1688 * Specify the value of {@link #visibility}.
1689
1690 * @param visibility One of {@link #VISIBILITY_PRIVATE} (the default),
1691 * {@link #VISIBILITY_SECRET}, or {@link #VISIBILITY_PUBLIC}.
1692 *
1693 * @return The same Builder.
1694 */
1695 public Builder setVisibility(int visibility) {
1696 mVisibility = visibility;
1697 return this;
1698 }
1699
1700 /**
1701 * Supply a replacement Notification whose contents should be shown in insecure contexts
1702 * (i.e. atop the secure lockscreen). See {@link #visibility} and {@link #VISIBILITY_PUBLIC}.
1703 * @param n A replacement notification, presumably with some or all info redacted.
1704 * @return The same Builder.
1705 */
1706 public Builder setPublicVersion(Notification n) {
1707 mPublicVersion = n;
1708 return this;
1709 }
1710
Joe Onorato46439ce2010-11-19 13:56:21 -08001711 private void setFlag(int mask, boolean value) {
1712 if (value) {
1713 mFlags |= mask;
1714 } else {
1715 mFlags &= ~mask;
1716 }
1717 }
1718
Daniel Sandler6387d2f2012-05-22 13:44:09 -04001719 private RemoteViews applyStandardTemplate(int resId, boolean fitIn1U) {
Joe Onorato561d3852010-11-20 18:09:34 -08001720 RemoteViews contentView = new RemoteViews(mContext.getPackageName(), resId);
Daniel Sandler9f7936a2012-05-21 16:14:28 -04001721 boolean showLine3 = false;
1722 boolean showLine2 = false;
Daniel Sandlerf3b73432012-03-27 15:01:25 -04001723 int smallIconImageViewId = R.id.icon;
1724 if (mLargeIcon != null) {
1725 contentView.setImageViewBitmap(R.id.icon, mLargeIcon);
1726 smallIconImageViewId = R.id.right_icon;
1727 }
Daniel Sandlere95658c2012-05-10 00:33:54 -04001728 if (mPriority < PRIORITY_LOW) {
1729 contentView.setInt(R.id.icon,
1730 "setBackgroundResource", R.drawable.notification_template_icon_low_bg);
1731 contentView.setInt(R.id.status_bar_latest_event_content,
1732 "setBackgroundResource", R.drawable.notification_bg_low);
1733 }
Joe Onorato561d3852010-11-20 18:09:34 -08001734 if (mSmallIcon != 0) {
Daniel Sandlerf3b73432012-03-27 15:01:25 -04001735 contentView.setImageViewResource(smallIconImageViewId, mSmallIcon);
1736 contentView.setViewVisibility(smallIconImageViewId, View.VISIBLE);
Jeff Sharkey1c400132011-08-05 14:50:13 -07001737 } else {
Daniel Sandlerf3b73432012-03-27 15:01:25 -04001738 contentView.setViewVisibility(smallIconImageViewId, View.GONE);
Joe Onorato561d3852010-11-20 18:09:34 -08001739 }
1740 if (mContentTitle != null) {
1741 contentView.setTextViewText(R.id.title, mContentTitle);
1742 }
1743 if (mContentText != null) {
Daniel Sandler9f7936a2012-05-21 16:14:28 -04001744 contentView.setTextViewText(R.id.text, mContentText);
1745 showLine3 = true;
Joe Onorato561d3852010-11-20 18:09:34 -08001746 }
1747 if (mContentInfo != null) {
1748 contentView.setTextViewText(R.id.info, mContentInfo);
Jeff Sharkey1c400132011-08-05 14:50:13 -07001749 contentView.setViewVisibility(R.id.info, View.VISIBLE);
Daniel Sandler9f7936a2012-05-21 16:14:28 -04001750 showLine3 = true;
Joe Onorato561d3852010-11-20 18:09:34 -08001751 } else if (mNumber > 0) {
Daniel Sandlerebce0112011-06-16 16:44:51 -04001752 final int tooBig = mContext.getResources().getInteger(
1753 R.integer.status_bar_notification_info_maxnum);
1754 if (mNumber > tooBig) {
1755 contentView.setTextViewText(R.id.info, mContext.getResources().getString(
1756 R.string.status_bar_notification_info_overflow));
Joe Onorato059a2f82011-01-04 10:27:01 -08001757 } else {
1758 NumberFormat f = NumberFormat.getIntegerInstance();
1759 contentView.setTextViewText(R.id.info, f.format(mNumber));
1760 }
Jeff Sharkey1c400132011-08-05 14:50:13 -07001761 contentView.setViewVisibility(R.id.info, View.VISIBLE);
Daniel Sandler9f7936a2012-05-21 16:14:28 -04001762 showLine3 = true;
Joe Onorato561d3852010-11-20 18:09:34 -08001763 } else {
1764 contentView.setViewVisibility(R.id.info, View.GONE);
1765 }
Daniel Sandlerf3b73432012-03-27 15:01:25 -04001766
Daniel Sandler9f7936a2012-05-21 16:14:28 -04001767 // Need to show three lines?
Daniel Sandlerf3b73432012-03-27 15:01:25 -04001768 if (mSubText != null) {
1769 contentView.setTextViewText(R.id.text, mSubText);
Daniel Sandler9f7936a2012-05-21 16:14:28 -04001770 if (mContentText != null) {
1771 contentView.setTextViewText(R.id.text2, mContentText);
Daniel Sandler9f7936a2012-05-21 16:14:28 -04001772 contentView.setViewVisibility(R.id.text2, View.VISIBLE);
1773 showLine2 = true;
1774 } else {
1775 contentView.setViewVisibility(R.id.text2, View.GONE);
1776 }
Jeff Sharkey1c400132011-08-05 14:50:13 -07001777 } else {
Daniel Sandlerf3b73432012-03-27 15:01:25 -04001778 contentView.setViewVisibility(R.id.text2, View.GONE);
1779 if (mProgressMax != 0 || mProgressIndeterminate) {
1780 contentView.setProgressBar(
1781 R.id.progress, mProgressMax, mProgress, mProgressIndeterminate);
1782 contentView.setViewVisibility(R.id.progress, View.VISIBLE);
Daniel Sandler9f7936a2012-05-21 16:14:28 -04001783 showLine2 = true;
Daniel Sandlerf3b73432012-03-27 15:01:25 -04001784 } else {
1785 contentView.setViewVisibility(R.id.progress, View.GONE);
1786 }
Jeff Sharkey1c400132011-08-05 14:50:13 -07001787 }
Daniel Sandler9f7936a2012-05-21 16:14:28 -04001788 if (showLine2) {
Daniel Sandler6387d2f2012-05-22 13:44:09 -04001789 if (fitIn1U) {
1790 // need to shrink all the type to make sure everything fits
1791 final Resources res = mContext.getResources();
1792 final float subTextSize = res.getDimensionPixelSize(
1793 R.dimen.notification_subtext_size);
1794 contentView.setTextViewTextSize(R.id.text, TypedValue.COMPLEX_UNIT_PX, subTextSize);
1795 }
Daniel Sandler9f7936a2012-05-21 16:14:28 -04001796 // vertical centering
1797 contentView.setViewPadding(R.id.line1, 0, 0, 0, 0);
1798 }
1799
Daniel Sandler0c890492012-09-12 17:23:10 -07001800 if (mWhen != 0 && mShowWhen) {
Daniel Sandlera2985ed2012-04-03 16:42:00 -04001801 if (mUseChronometer) {
1802 contentView.setViewVisibility(R.id.chronometer, View.VISIBLE);
1803 contentView.setLong(R.id.chronometer, "setBase",
1804 mWhen + (SystemClock.elapsedRealtime() - System.currentTimeMillis()));
1805 contentView.setBoolean(R.id.chronometer, "setStarted", true);
1806 } else {
1807 contentView.setViewVisibility(R.id.time, View.VISIBLE);
1808 contentView.setLong(R.id.time, "setTime", mWhen);
1809 }
Daniel Sandler0c890492012-09-12 17:23:10 -07001810 } else {
1811 contentView.setViewVisibility(R.id.time, View.GONE);
Joe Onorato561d3852010-11-20 18:09:34 -08001812 }
Daniel Sandler0c890492012-09-12 17:23:10 -07001813
Daniel Sandler9f7936a2012-05-21 16:14:28 -04001814 contentView.setViewVisibility(R.id.line3, showLine3 ? View.VISIBLE : View.GONE);
Daniel Sandler6387d2f2012-05-22 13:44:09 -04001815 contentView.setViewVisibility(R.id.overflow_divider, showLine3 ? View.VISIBLE : View.GONE);
Joe Onorato561d3852010-11-20 18:09:34 -08001816 return contentView;
1817 }
1818
Daniel Sandler96fd7c12012-03-30 16:37:36 -04001819 private RemoteViews applyStandardTemplateWithActions(int layoutId) {
Daniel Sandler6387d2f2012-05-22 13:44:09 -04001820 RemoteViews big = applyStandardTemplate(layoutId, false);
Daniel Sandler96fd7c12012-03-30 16:37:36 -04001821
1822 int N = mActions.size();
1823 if (N > 0) {
Chris Wrend6297db2012-05-03 16:20:13 -04001824 // Log.d("Notification", "has actions: " + mContentText);
Daniel Sandler96fd7c12012-03-30 16:37:36 -04001825 big.setViewVisibility(R.id.actions, View.VISIBLE);
Daniel Sandler6387d2f2012-05-22 13:44:09 -04001826 big.setViewVisibility(R.id.action_divider, View.VISIBLE);
Daniel Sandler8680bf82012-05-15 16:52:52 -04001827 if (N>MAX_ACTION_BUTTONS) N=MAX_ACTION_BUTTONS;
Chris Wren2c22eb02012-05-08 09:49:13 -04001828 big.removeAllViews(R.id.actions);
Daniel Sandler96fd7c12012-03-30 16:37:36 -04001829 for (int i=0; i<N; i++) {
1830 final RemoteViews button = generateActionButton(mActions.get(i));
Chris Wrend6297db2012-05-03 16:20:13 -04001831 //Log.d("Notification", "adding action " + i + ": " + mActions.get(i).title);
Daniel Sandler96fd7c12012-03-30 16:37:36 -04001832 big.addView(R.id.actions, button);
1833 }
1834 }
1835 return big;
1836 }
1837
Joe Onorato46439ce2010-11-19 13:56:21 -08001838 private RemoteViews makeContentView() {
1839 if (mContentView != null) {
1840 return mContentView;
1841 } else {
Daniel Sandler6387d2f2012-05-22 13:44:09 -04001842 return applyStandardTemplate(R.layout.notification_template_base, true); // no more special large_icon flavor
Joe Onorato46439ce2010-11-19 13:56:21 -08001843 }
1844 }
1845
1846 private RemoteViews makeTickerView() {
1847 if (mTickerView != null) {
1848 return mTickerView;
1849 } else {
Joe Onorato561d3852010-11-20 18:09:34 -08001850 if (mContentView == null) {
Daniel Sandlerf3b73432012-03-27 15:01:25 -04001851 return applyStandardTemplate(mLargeIcon == null
Joe Onorato561d3852010-11-20 18:09:34 -08001852 ? R.layout.status_bar_latest_event_ticker
Daniel Sandler6387d2f2012-05-22 13:44:09 -04001853 : R.layout.status_bar_latest_event_ticker_large_icon, true);
Joe Onorato561d3852010-11-20 18:09:34 -08001854 } else {
1855 return null;
1856 }
Joe Onorato46439ce2010-11-19 13:56:21 -08001857 }
1858 }
1859
Daniel Sandler96fd7c12012-03-30 16:37:36 -04001860 private RemoteViews makeBigContentView() {
1861 if (mActions.size() == 0) return null;
1862
Chris Wrenb023bf82012-04-23 16:05:42 -04001863 return applyStandardTemplateWithActions(R.layout.notification_template_big_base);
Daniel Sandler96fd7c12012-03-30 16:37:36 -04001864 }
1865
Daniel Sandler96fd7c12012-03-30 16:37:36 -04001866 private RemoteViews generateActionButton(Action action) {
Daniel Sandler8680bf82012-05-15 16:52:52 -04001867 final boolean tombstone = (action.actionIntent == null);
Joe Malin8d40d042012-11-05 11:36:40 -08001868 RemoteViews button = new RemoteViews(mContext.getPackageName(),
Daniel Sandler8680bf82012-05-15 16:52:52 -04001869 tombstone ? R.layout.notification_action_tombstone
1870 : R.layout.notification_action);
Chris Wren8749ac8a2013-12-03 14:31:01 -05001871 button.setTextViewCompoundDrawablesRelative(R.id.action0, action.icon, 0, 0, 0);
Daniel Sandler96fd7c12012-03-30 16:37:36 -04001872 button.setTextViewText(R.id.action0, action.title);
Daniel Sandler8680bf82012-05-15 16:52:52 -04001873 if (!tombstone) {
Daniel Sandlere5518842012-05-10 16:20:40 -04001874 button.setOnClickPendingIntent(R.id.action0, action.actionIntent);
Daniel Sandlere5518842012-05-10 16:20:40 -04001875 }
Daniel Sandler96fd7c12012-03-30 16:37:36 -04001876 button.setContentDescription(R.id.action0, action.title);
1877 return button;
1878 }
1879
Joe Onoratocb109a02011-01-18 17:57:41 -08001880 /**
Chris Wrenfbd96ba2012-05-01 12:03:58 -04001881 * Apply the unstyled operations and return a new {@link Notification} object.
Daniel Sandlercf1d39b2013-09-23 13:35:35 -04001882 * @hide
Joe Onoratocb109a02011-01-18 17:57:41 -08001883 */
Daniel Sandlercf1d39b2013-09-23 13:35:35 -04001884 public Notification buildUnstyled() {
Joe Onorato46439ce2010-11-19 13:56:21 -08001885 Notification n = new Notification();
1886 n.when = mWhen;
1887 n.icon = mSmallIcon;
1888 n.iconLevel = mSmallIconLevel;
Joe Onorato8595a3d2010-11-19 18:12:07 -08001889 n.number = mNumber;
Joe Onorato46439ce2010-11-19 13:56:21 -08001890 n.contentView = makeContentView();
1891 n.contentIntent = mContentIntent;
1892 n.deleteIntent = mDeleteIntent;
1893 n.fullScreenIntent = mFullScreenIntent;
1894 n.tickerText = mTickerText;
1895 n.tickerView = makeTickerView();
1896 n.largeIcon = mLargeIcon;
1897 n.sound = mSound;
1898 n.audioStreamType = mAudioStreamType;
1899 n.vibrate = mVibrate;
1900 n.ledARGB = mLedArgb;
1901 n.ledOnMS = mLedOnMs;
1902 n.ledOffMS = mLedOffMs;
1903 n.defaults = mDefaults;
1904 n.flags = mFlags;
Daniel Sandler96fd7c12012-03-30 16:37:36 -04001905 n.bigContentView = makeBigContentView();
Daniel Sandler26c13432013-04-04 11:01:04 -04001906 if (mLedOnMs != 0 || mLedOffMs != 0) {
Joe Onorato8d0b6552010-11-22 16:09:29 -08001907 n.flags |= FLAG_SHOW_LIGHTS;
1908 }
1909 if ((mDefaults & DEFAULT_LIGHTS) != 0) {
1910 n.flags |= FLAG_SHOW_LIGHTS;
1911 }
Daniel Sandler2561b0b2012-02-13 21:04:12 -05001912 if (mKindList.size() > 0) {
1913 n.kind = new String[mKindList.size()];
1914 mKindList.toArray(n.kind);
1915 } else {
1916 n.kind = null;
1917 }
1918 n.priority = mPriority;
Daniel Sandlera0a938c2012-03-15 08:42:37 -04001919 if (mActions.size() > 0) {
1920 n.actions = new Action[mActions.size()];
1921 mActions.toArray(n.actions);
1922 }
Dan Sandler0bf2ed82013-12-21 23:33:41 -06001923 n.visibility = mVisibility;
1924
1925 if (mPublicVersion != null) {
1926 n.publicVersion = new Notification();
1927 mPublicVersion.cloneInto(n.publicVersion, true);
1928 }
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -05001929
Joe Onorato46439ce2010-11-19 13:56:21 -08001930 return n;
1931 }
Chris Wrenfbd96ba2012-05-01 12:03:58 -04001932
1933 /**
Daniel Sandlerf45564e2013-04-15 15:05:08 -04001934 * Capture, in the provided bundle, semantic information used in the construction of
1935 * this Notification object.
1936 * @hide
1937 */
1938 public void addExtras(Bundle extras) {
1939 // Store original information used in the construction of this object
1940 extras.putCharSequence(EXTRA_TITLE, mContentTitle);
1941 extras.putCharSequence(EXTRA_TEXT, mContentText);
1942 extras.putCharSequence(EXTRA_SUB_TEXT, mSubText);
1943 extras.putCharSequence(EXTRA_INFO_TEXT, mContentInfo);
1944 extras.putInt(EXTRA_SMALL_ICON, mSmallIcon);
1945 extras.putInt(EXTRA_PROGRESS, mProgress);
1946 extras.putInt(EXTRA_PROGRESS_MAX, mProgressMax);
1947 extras.putBoolean(EXTRA_PROGRESS_INDETERMINATE, mProgressIndeterminate);
1948 extras.putBoolean(EXTRA_SHOW_CHRONOMETER, mUseChronometer);
1949 extras.putBoolean(EXTRA_SHOW_WHEN, mShowWhen);
John Spurlockac08a472013-06-10 11:37:08 -04001950 if (mLargeIcon != null) {
1951 extras.putParcelable(EXTRA_LARGE_ICON, mLargeIcon);
1952 }
Daniel Sandlerf45564e2013-04-15 15:05:08 -04001953 }
1954
1955 /**
Chris Wrenfbd96ba2012-05-01 12:03:58 -04001956 * @deprecated Use {@link #build()} instead.
1957 */
1958 @Deprecated
1959 public Notification getNotification() {
1960 return build();
1961 }
1962
1963 /**
1964 * Combine all of the options that have been set and return a new {@link Notification}
1965 * object.
1966 */
1967 public Notification build() {
Daniel Sandlercf1d39b2013-09-23 13:35:35 -04001968 Notification n = buildUnstyled();
Daniel Sandlerf45564e2013-04-15 15:05:08 -04001969
Chris Wrenfbd96ba2012-05-01 12:03:58 -04001970 if (mStyle != null) {
Daniel Sandlercf1d39b2013-09-23 13:35:35 -04001971 n = mStyle.buildStyled(n);
Chris Wrenfbd96ba2012-05-01 12:03:58 -04001972 }
Daniel Sandlerf45564e2013-04-15 15:05:08 -04001973
1974 n.extras = mExtras != null ? new Bundle(mExtras) : new Bundle();
1975
1976 addExtras(n.extras);
1977 if (mStyle != null) {
1978 mStyle.addExtras(n.extras);
1979 }
1980
1981 return n;
Chris Wrenfbd96ba2012-05-01 12:03:58 -04001982 }
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -05001983
1984 /**
1985 * Apply this Builder to an existing {@link Notification} object.
1986 *
1987 * @hide
1988 */
1989 public Notification buildInto(Notification n) {
Daniel Sandler1a497d32013-04-18 14:52:45 -04001990 build().cloneInto(n, true);
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -05001991 return n;
1992 }
Chris Wrenfbd96ba2012-05-01 12:03:58 -04001993 }
1994
Chris Wrenfbd96ba2012-05-01 12:03:58 -04001995 /**
1996 * An object that can apply a rich notification style to a {@link Notification.Builder}
1997 * object.
1998 */
Chris Wrend6297db2012-05-03 16:20:13 -04001999 public static abstract class Style
2000 {
2001 private CharSequence mBigContentTitle;
2002 private CharSequence mSummaryText = null;
Daniel Sandler619738c2012-06-07 16:33:08 -04002003 private boolean mSummaryTextSet = false;
Chris Wrend6297db2012-05-03 16:20:13 -04002004
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002005 protected Builder mBuilder;
2006
Chris Wrend6297db2012-05-03 16:20:13 -04002007 /**
2008 * Overrides ContentTitle in the big form of the template.
2009 * This defaults to the value passed to setContentTitle().
2010 */
2011 protected void internalSetBigContentTitle(CharSequence title) {
2012 mBigContentTitle = title;
2013 }
2014
2015 /**
2016 * Set the first line of text after the detail section in the big form of the template.
2017 */
2018 protected void internalSetSummaryText(CharSequence cs) {
2019 mSummaryText = cs;
Daniel Sandler619738c2012-06-07 16:33:08 -04002020 mSummaryTextSet = true;
Chris Wrend6297db2012-05-03 16:20:13 -04002021 }
2022
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002023 public void setBuilder(Builder builder) {
2024 if (mBuilder != builder) {
2025 mBuilder = builder;
Daniel Sandlerc08dea22012-06-28 08:35:24 -07002026 if (mBuilder != null) {
2027 mBuilder.setStyle(this);
2028 }
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002029 }
2030 }
2031
Chris Wrend6297db2012-05-03 16:20:13 -04002032 protected void checkBuilder() {
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002033 if (mBuilder == null) {
2034 throw new IllegalArgumentException("Style requires a valid Builder object");
2035 }
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002036 }
Chris Wrend6297db2012-05-03 16:20:13 -04002037
2038 protected RemoteViews getStandardView(int layoutId) {
2039 checkBuilder();
2040
2041 if (mBigContentTitle != null) {
2042 mBuilder.setContentTitle(mBigContentTitle);
2043 }
2044
Chris Wrend6297db2012-05-03 16:20:13 -04002045 RemoteViews contentView = mBuilder.applyStandardTemplateWithActions(layoutId);
2046
Chris Wrend6297db2012-05-03 16:20:13 -04002047 if (mBigContentTitle != null && mBigContentTitle.equals("")) {
2048 contentView.setViewVisibility(R.id.line1, View.GONE);
Chris Wren67dc9a02012-05-16 01:03:20 -04002049 } else {
2050 contentView.setViewVisibility(R.id.line1, View.VISIBLE);
Chris Wrend6297db2012-05-03 16:20:13 -04002051 }
2052
Daniel Sandler619738c2012-06-07 16:33:08 -04002053 // The last line defaults to the subtext, but can be replaced by mSummaryText
2054 final CharSequence overflowText =
2055 mSummaryTextSet ? mSummaryText
2056 : mBuilder.mSubText;
2057 if (overflowText != null) {
2058 contentView.setTextViewText(R.id.text, overflowText);
2059 contentView.setViewVisibility(R.id.overflow_divider, View.VISIBLE);
Daniel Sandler9f7936a2012-05-21 16:14:28 -04002060 contentView.setViewVisibility(R.id.line3, View.VISIBLE);
Daniel Sandler916ad912012-06-13 12:17:07 -04002061 } else {
2062 contentView.setViewVisibility(R.id.overflow_divider, View.GONE);
2063 contentView.setViewVisibility(R.id.line3, View.GONE);
Chris Wrend6297db2012-05-03 16:20:13 -04002064 }
2065
2066 return contentView;
2067 }
2068
Daniel Sandlerf45564e2013-04-15 15:05:08 -04002069 /**
2070 * @hide
2071 */
2072 public void addExtras(Bundle extras) {
2073 if (mSummaryTextSet) {
2074 extras.putCharSequence(EXTRA_SUMMARY_TEXT, mSummaryText);
2075 }
2076 if (mBigContentTitle != null) {
2077 extras.putCharSequence(EXTRA_TITLE_BIG, mBigContentTitle);
2078 }
Chris Wren91ad5632013-06-05 15:05:57 -04002079 extras.putString(EXTRA_TEMPLATE, this.getClass().getName());
Daniel Sandlerf45564e2013-04-15 15:05:08 -04002080 }
2081
Daniel Sandlercf1d39b2013-09-23 13:35:35 -04002082 /**
2083 * @hide
2084 */
2085 public abstract Notification buildStyled(Notification wip);
2086
2087 /**
2088 * Calls {@link android.app.Notification.Builder#build()} on the Builder this Style is
2089 * attached to.
2090 *
2091 * @return the fully constructed Notification.
2092 */
2093 public Notification build() {
2094 checkBuilder();
2095 return mBuilder.build();
2096 }
Joe Onorato46439ce2010-11-19 13:56:21 -08002097 }
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002098
2099 /**
Daniel Sandler4dfbe832012-04-11 14:51:46 -04002100 * Helper class for generating large-format notifications that include a large image attachment.
Joe Malin8d40d042012-11-05 11:36:40 -08002101 *
Daniel Sandler4dfbe832012-04-11 14:51:46 -04002102 * This class is a "rebuilder": It consumes a Builder object and modifies its behavior, like so:
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002103 * <pre class="prettyprint">
2104 * Notification noti = new Notification.BigPictureStyle(
2105 * new Notification.Builder()
Daniel Sandler4dfbe832012-04-11 14:51:46 -04002106 * .setContentTitle(&quot;New photo from &quot; + sender.toString())
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002107 * .setContentText(subject)
Daniel Sandler4dfbe832012-04-11 14:51:46 -04002108 * .setSmallIcon(R.drawable.new_post)
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002109 * .setLargeIcon(aBitmap))
2110 * .bigPicture(aBigBitmap)
2111 * .build();
2112 * </pre>
Joe Malin8d40d042012-11-05 11:36:40 -08002113 *
Daniel Sandler4dfbe832012-04-11 14:51:46 -04002114 * @see Notification#bigContentView
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002115 */
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002116 public static class BigPictureStyle extends Style {
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002117 private Bitmap mPicture;
Chris Wren3745a3d2012-05-22 15:11:52 -04002118 private Bitmap mBigLargeIcon;
2119 private boolean mBigLargeIconSet = false;
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002120
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002121 public BigPictureStyle() {
2122 }
2123
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002124 public BigPictureStyle(Builder builder) {
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002125 setBuilder(builder);
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002126 }
2127
Chris Wrend6297db2012-05-03 16:20:13 -04002128 /**
2129 * Overrides ContentTitle in the big form of the template.
2130 * This defaults to the value passed to setContentTitle().
2131 */
2132 public BigPictureStyle setBigContentTitle(CharSequence title) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04002133 internalSetBigContentTitle(safeCharSequence(title));
Chris Wrend6297db2012-05-03 16:20:13 -04002134 return this;
2135 }
2136
2137 /**
2138 * Set the first line of text after the detail section in the big form of the template.
2139 */
2140 public BigPictureStyle setSummaryText(CharSequence cs) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04002141 internalSetSummaryText(safeCharSequence(cs));
Chris Wrend6297db2012-05-03 16:20:13 -04002142 return this;
2143 }
2144
Chris Wren0bd664d2012-08-01 13:56:56 -04002145 /**
2146 * Provide the bitmap to be used as the payload for the BigPicture notification.
2147 */
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002148 public BigPictureStyle bigPicture(Bitmap b) {
2149 mPicture = b;
2150 return this;
2151 }
2152
Chris Wren3745a3d2012-05-22 15:11:52 -04002153 /**
Chris Wren3745a3d2012-05-22 15:11:52 -04002154 * Override the large icon when the big notification is shown.
2155 */
2156 public BigPictureStyle bigLargeIcon(Bitmap b) {
2157 mBigLargeIconSet = true;
2158 mBigLargeIcon = b;
2159 return this;
2160 }
2161
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002162 private RemoteViews makeBigContentView() {
Chris Wrend6297db2012-05-03 16:20:13 -04002163 RemoteViews contentView = getStandardView(R.layout.notification_template_big_picture);
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002164
2165 contentView.setImageViewBitmap(R.id.big_picture, mPicture);
2166
2167 return contentView;
2168 }
2169
Daniel Sandlerf45564e2013-04-15 15:05:08 -04002170 /**
2171 * @hide
2172 */
2173 public void addExtras(Bundle extras) {
2174 super.addExtras(extras);
2175
2176 if (mBigLargeIconSet) {
2177 extras.putParcelable(EXTRA_LARGE_ICON_BIG, mBigLargeIcon);
2178 }
2179 extras.putParcelable(EXTRA_PICTURE, mPicture);
2180 }
2181
Daniel Sandlercf1d39b2013-09-23 13:35:35 -04002182 /**
2183 * @hide
2184 */
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002185 @Override
Daniel Sandlercf1d39b2013-09-23 13:35:35 -04002186 public Notification buildStyled(Notification wip) {
Chris Wren3745a3d2012-05-22 15:11:52 -04002187 if (mBigLargeIconSet ) {
2188 mBuilder.mLargeIcon = mBigLargeIcon;
2189 }
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002190 wip.bigContentView = makeBigContentView();
2191 return wip;
2192 }
2193 }
2194
2195 /**
Daniel Sandler4dfbe832012-04-11 14:51:46 -04002196 * Helper class for generating large-format notifications that include a lot of text.
Joe Malin8d40d042012-11-05 11:36:40 -08002197 *
Daniel Sandler4dfbe832012-04-11 14:51:46 -04002198 * This class is a "rebuilder": It consumes a Builder object and modifies its behavior, like so:
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002199 * <pre class="prettyprint">
Daniel Sandler87682782012-11-07 14:04:42 -05002200 * Notification noti = new Notification.BigTextStyle(
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002201 * new Notification.Builder()
2202 * .setContentTitle(&quot;New mail from &quot; + sender.toString())
2203 * .setContentText(subject)
2204 * .setSmallIcon(R.drawable.new_mail)
2205 * .setLargeIcon(aBitmap))
2206 * .bigText(aVeryLongString)
2207 * .build();
2208 * </pre>
Joe Malin8d40d042012-11-05 11:36:40 -08002209 *
Daniel Sandler4dfbe832012-04-11 14:51:46 -04002210 * @see Notification#bigContentView
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002211 */
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002212 public static class BigTextStyle extends Style {
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002213 private CharSequence mBigText;
2214
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002215 public BigTextStyle() {
2216 }
2217
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002218 public BigTextStyle(Builder builder) {
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002219 setBuilder(builder);
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002220 }
2221
Chris Wrend6297db2012-05-03 16:20:13 -04002222 /**
2223 * Overrides ContentTitle in the big form of the template.
2224 * This defaults to the value passed to setContentTitle().
2225 */
2226 public BigTextStyle setBigContentTitle(CharSequence title) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04002227 internalSetBigContentTitle(safeCharSequence(title));
Chris Wrend6297db2012-05-03 16:20:13 -04002228 return this;
2229 }
2230
2231 /**
2232 * Set the first line of text after the detail section in the big form of the template.
2233 */
2234 public BigTextStyle setSummaryText(CharSequence cs) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04002235 internalSetSummaryText(safeCharSequence(cs));
Chris Wrend6297db2012-05-03 16:20:13 -04002236 return this;
2237 }
2238
Chris Wren0bd664d2012-08-01 13:56:56 -04002239 /**
2240 * Provide the longer text to be displayed in the big form of the
2241 * template in place of the content text.
2242 */
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002243 public BigTextStyle bigText(CharSequence cs) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04002244 mBigText = safeCharSequence(cs);
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002245 return this;
2246 }
2247
Daniel Sandlerf45564e2013-04-15 15:05:08 -04002248 /**
2249 * @hide
2250 */
2251 public void addExtras(Bundle extras) {
2252 super.addExtras(extras);
2253
2254 extras.putCharSequence(EXTRA_TEXT, mBigText);
2255 }
2256
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002257 private RemoteViews makeBigContentView() {
Daniel Sandler619738c2012-06-07 16:33:08 -04002258 // Remove the content text so line3 only shows if you have a summary
2259 final boolean hadThreeLines = (mBuilder.mContentText != null && mBuilder.mSubText != null);
Daniel Sandler6387d2f2012-05-22 13:44:09 -04002260 mBuilder.mContentText = null;
Daniel Sandler916ad912012-06-13 12:17:07 -04002261
Chris Wrend6297db2012-05-03 16:20:13 -04002262 RemoteViews contentView = getStandardView(R.layout.notification_template_big_text);
Joe Malin8d40d042012-11-05 11:36:40 -08002263
Daniel Sandler619738c2012-06-07 16:33:08 -04002264 if (hadThreeLines) {
2265 // vertical centering
2266 contentView.setViewPadding(R.id.line1, 0, 0, 0, 0);
2267 }
2268
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002269 contentView.setTextViewText(R.id.big_text, mBigText);
2270 contentView.setViewVisibility(R.id.big_text, View.VISIBLE);
Chris Wren3c5f92432012-05-04 16:31:17 -04002271 contentView.setViewVisibility(R.id.text2, View.GONE);
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002272
2273 return contentView;
2274 }
2275
Daniel Sandlercf1d39b2013-09-23 13:35:35 -04002276 /**
2277 * @hide
2278 */
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002279 @Override
Daniel Sandlercf1d39b2013-09-23 13:35:35 -04002280 public Notification buildStyled(Notification wip) {
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002281 wip.bigContentView = makeBigContentView();
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -05002282
2283 wip.extras.putCharSequence(EXTRA_TEXT, mBigText);
2284
Daniel Sandlerf3b73432012-03-27 15:01:25 -04002285 return wip;
2286 }
2287 }
Daniel Sandler879c5e02012-04-17 16:46:51 -04002288
2289 /**
2290 * Helper class for generating large-format notifications that include a list of (up to 5) strings.
Joe Malin8d40d042012-11-05 11:36:40 -08002291 *
Daniel Sandler879c5e02012-04-17 16:46:51 -04002292 * This class is a "rebuilder": It consumes a Builder object and modifies its behavior, like so:
2293 * <pre class="prettyprint">
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002294 * Notification noti = new Notification.InboxStyle(
Daniel Sandler879c5e02012-04-17 16:46:51 -04002295 * new Notification.Builder()
Chris Wrend6297db2012-05-03 16:20:13 -04002296 * .setContentTitle(&quot;5 New mails from &quot; + sender.toString())
Daniel Sandler879c5e02012-04-17 16:46:51 -04002297 * .setContentText(subject)
2298 * .setSmallIcon(R.drawable.new_mail)
2299 * .setLargeIcon(aBitmap))
2300 * .addLine(str1)
2301 * .addLine(str2)
Chris Wrend6297db2012-05-03 16:20:13 -04002302 * .setContentTitle("")
2303 * .setSummaryText(&quot;+3 more&quot;)
Daniel Sandler879c5e02012-04-17 16:46:51 -04002304 * .build();
2305 * </pre>
Joe Malin8d40d042012-11-05 11:36:40 -08002306 *
Daniel Sandler879c5e02012-04-17 16:46:51 -04002307 * @see Notification#bigContentView
2308 */
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002309 public static class InboxStyle extends Style {
Daniel Sandler879c5e02012-04-17 16:46:51 -04002310 private ArrayList<CharSequence> mTexts = new ArrayList<CharSequence>(5);
2311
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002312 public InboxStyle() {
2313 }
2314
Daniel Sandler879c5e02012-04-17 16:46:51 -04002315 public InboxStyle(Builder builder) {
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002316 setBuilder(builder);
Daniel Sandler879c5e02012-04-17 16:46:51 -04002317 }
2318
Chris Wrend6297db2012-05-03 16:20:13 -04002319 /**
2320 * Overrides ContentTitle in the big form of the template.
2321 * This defaults to the value passed to setContentTitle().
2322 */
2323 public InboxStyle setBigContentTitle(CharSequence title) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04002324 internalSetBigContentTitle(safeCharSequence(title));
Chris Wrend6297db2012-05-03 16:20:13 -04002325 return this;
2326 }
2327
2328 /**
2329 * Set the first line of text after the detail section in the big form of the template.
2330 */
2331 public InboxStyle setSummaryText(CharSequence cs) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04002332 internalSetSummaryText(safeCharSequence(cs));
Chris Wrend6297db2012-05-03 16:20:13 -04002333 return this;
2334 }
2335
Chris Wren0bd664d2012-08-01 13:56:56 -04002336 /**
2337 * Append a line to the digest section of the Inbox notification.
2338 */
Daniel Sandler879c5e02012-04-17 16:46:51 -04002339 public InboxStyle addLine(CharSequence cs) {
Daniel Sandlerdcbaf662013-04-26 16:23:09 -04002340 mTexts.add(safeCharSequence(cs));
Daniel Sandler879c5e02012-04-17 16:46:51 -04002341 return this;
2342 }
2343
Daniel Sandlerf45564e2013-04-15 15:05:08 -04002344 /**
2345 * @hide
2346 */
2347 public void addExtras(Bundle extras) {
2348 super.addExtras(extras);
2349 CharSequence[] a = new CharSequence[mTexts.size()];
2350 extras.putCharSequenceArray(EXTRA_TEXT_LINES, mTexts.toArray(a));
2351 }
2352
Daniel Sandler879c5e02012-04-17 16:46:51 -04002353 private RemoteViews makeBigContentView() {
Daniel Sandler619738c2012-06-07 16:33:08 -04002354 // Remove the content text so line3 disappears unless you have a summary
2355 mBuilder.mContentText = null;
Chris Wrend6297db2012-05-03 16:20:13 -04002356 RemoteViews contentView = getStandardView(R.layout.notification_template_inbox);
Daniel Sandler619738c2012-06-07 16:33:08 -04002357
Chris Wrend6297db2012-05-03 16:20:13 -04002358 contentView.setViewVisibility(R.id.text2, View.GONE);
Daniel Sandler879c5e02012-04-17 16:46:51 -04002359
Chris Wrend6297db2012-05-03 16:20:13 -04002360 int[] rowIds = {R.id.inbox_text0, R.id.inbox_text1, R.id.inbox_text2, R.id.inbox_text3,
Chris Wren29bb6d92012-05-17 18:09:42 -04002361 R.id.inbox_text4, R.id.inbox_text5, R.id.inbox_text6};
Chris Wrend6297db2012-05-03 16:20:13 -04002362
Chris Wren4ed80d52012-05-17 09:30:03 -04002363 // Make sure all rows are gone in case we reuse a view.
2364 for (int rowId : rowIds) {
2365 contentView.setViewVisibility(rowId, View.GONE);
2366 }
2367
Chris Wren683ab002012-09-20 10:35:54 -04002368
Daniel Sandler879c5e02012-04-17 16:46:51 -04002369 int i=0;
2370 while (i < mTexts.size() && i < rowIds.length) {
2371 CharSequence str = mTexts.get(i);
2372 if (str != null && !str.equals("")) {
2373 contentView.setViewVisibility(rowIds[i], View.VISIBLE);
2374 contentView.setTextViewText(rowIds[i], str);
2375 }
2376 i++;
2377 }
2378
Chris Wren683ab002012-09-20 10:35:54 -04002379 contentView.setViewVisibility(R.id.inbox_end_pad,
2380 mTexts.size() > 0 ? View.VISIBLE : View.GONE);
2381
2382 contentView.setViewVisibility(R.id.inbox_more,
2383 mTexts.size() > rowIds.length ? View.VISIBLE : View.GONE);
Chris Wren29bb6d92012-05-17 18:09:42 -04002384
Daniel Sandler879c5e02012-04-17 16:46:51 -04002385 return contentView;
2386 }
2387
Daniel Sandlercf1d39b2013-09-23 13:35:35 -04002388 /**
2389 * @hide
2390 */
Chris Wrenfbd96ba2012-05-01 12:03:58 -04002391 @Override
Daniel Sandlercf1d39b2013-09-23 13:35:35 -04002392 public Notification buildStyled(Notification wip) {
Daniel Sandler879c5e02012-04-17 16:46:51 -04002393 wip.bigContentView = makeBigContentView();
Daniel Sandlerbe6e7e02013-02-01 17:49:11 -05002394
Daniel Sandler879c5e02012-04-17 16:46:51 -04002395 return wip;
2396 }
2397 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002398}