Home | History | Annotate | Download | only in app

Lines Matching defs:Notification

34  * A class that represents how a persistent notification is to be presented to
41 public class Notification implements Parcelable
49 * Use the default notification sound. This will ignore any given
57 * Use the default notification vibrate. This will ignore any given
66 * Use the default notification lights. This will ignore the
75 * The timestamp for the notification. The icons and expanded views
86 * The number of events that this notification represents. For example, in a new mail
87 * notification, this could be the number of unread messages. This number is superimposed over
112 * An intent to launch instead of posting the notification to the status bar.
117 * to turn it off and use a normal notification, as this can be extremely
129 * The view that will represent this notification in the expanded status bar.
146 * To play the default notification sound, see {@link #defaults}.
216 * set if you want the LED on for this notification.
236 * set if this notification is in reference to something that is ongoing,
237 * like a phone call. It should not be set if this notification is in
245 * the audio will be repeated until the notification is
246 * cancelled or the notification window is opened.
253 * notification is sent, even if it has not been canceled before that.
259 * set if the notification should be canceled when it is clicked by the
266 * set if the notification should not be canceled when the user clicks
273 * set if this notification represents a currently running service. This
281 * Constructs a Notification object with everything set to 0.
283 public Notification()
289 * @deprecated use {@link #Notification(int,CharSequence,long)} and {@link #setLatestEventInfo}.
292 public Notification(Context context, int icon, CharSequence tickerText, long when,
303 * Constructs a Notification object with the information needed to
307 * @param tickerText The text that flows by in the status bar when the notification first
312 public Notification(int icon, CharSequence tickerText, long when)
320 * Unflatten the notification from a parcel.
322 public Notification(Parcel parcel)
359 public Notification clone() {
360 Notification that = new Notification();
403 * Flatten this notification from a parcel.
462 * Parcelable.Creator that instantiates Notification objects
464 public static final Parcelable.Creator<Notification> CREATOR
465 = new Parcelable.Creator<Notification>()
467 public Notification createFromParcel(Parcel parcel)
469 return new Notification(parcel);
472 public Notification[] newArray(int size)
474 return new Notification[size];
487 * @param contentIntent The intent to launch when the user clicks the expanded notification.
517 sb.append("Notification(vibrate=");