Lines Matching refs:when

104      * timestamped according to when the activity began.
109 * <li>Notification of a new chat message should be stamped when the message was received.</li>
110 * <li>Notification of an ongoing file download (with a progress bar, for example) should be stamped when the download started.</li>
111 * <li>Notification of a completed file download should be stamped when the download finished.</li>
118 public long when;
150 * The intent to execute when the expanded status entry is clicked. If
163 * The intent to execute when the notification is explicitly dismissed by the user, either with
179 * Text to scroll across the screen when this item is added to
187 * The view to show as the ticker in the status bar when the notification
226 * The audio stream type to use when playing the sound.
324 * set if the notification should be canceled when it is clicked by the
332 * set if the notification should not be canceled when the user clicks
391 * system will make a determination about how to interpret this priority when presenting
450 * {@link #extras} key: this is the title of the notification when shown in expanded form,
487 * {@link #extras} key: this is a bitmap to be used instead of the small icon when showing the
495 * {@link Builder#setLargeIcon(android.graphics.Bitmap)} when the notification is
520 * {@link #extras} key: whether {@link #when} should be shown as a count-up timer (specifically
527 * {@link #extras} key: whether {@link #when} should be shown,
583 * It must include an icon, a label, and a {@link PendingIntent} to be fired when the action is
599 * Intent to send when the user invokes this action. May be null, in which case the action
669 this.when = System.currentTimeMillis();
676 public Notification(Context context, int icon, CharSequence tickerText, long when,
679 this.when = when;
691 * @param tickerText The text that flows by in the status bar when the notification first
693 * @param when The time to show in the time field. In the System.currentTimeMillis
699 public Notification(int icon, CharSequence tickerText, long when)
703 this.when = when;
713 when = parcel.readLong();
777 that.when = this.when;
854 * listeners when the full contents are not necessary.
895 parcel.writeLong(when);
995 * <p>Uses the {@link #icon} and {@link #when} fields to set the icon and time fields
1000 * @param contentIntent The intent to launch when the user clicks the expanded notification.
1016 builder.setWhen(this.when);
1183 * <tr><th align=right>when</th>
1209 * @see Notification#when
1211 public Builder setWhen(long when) {
1212 mWhen = when;
1226 * Show the {@link Notification#when} field as a stopwatch.
1228 * Instead of presenting <code>when</code> as a timestamp, the notification will show an
1229 * automatically updating display of the minutes and seconds since <code>when</code>.
1231 * Useful when showing an elapsed time (like an ongoing phone call).
1234 * @see Notification#when
1262 * level parameter for when the icon is a {@link android.graphics.drawable.LevelListDrawable
1347 * Supply a {@link PendingIntent} to be sent when the notification is clicked.
1363 * Supply a {@link PendingIntent} to send when the notification is cleared explicitly by the user.
1394 * Set the "ticker" text which is displayed in the status bar when the notification first
1405 * Set the text that is displayed in the status bar when the notification first
1524 * Make this notification automatically dismissed when the user touches it. The
1525 * PendingIntent set with {@link #setDeleteIntent} will be sent when this happens.
1593 * the order they were added. Actions will not be displayed when the notification is
1599 * @param intent PendingIntent to be fired when the action is invoked.
1796 n.when = mWhen;
2057 * Override the large icon when the big notification is shown.