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
506 this.when = System.currentTimeMillis();
513 public Notification(Context context, int icon, CharSequence tickerText, long when,
516 this.when = when;
528 * @param tickerText The text that flows by in the status bar when the notification first
530 * @param when The time to show in the time field. In the System.currentTimeMillis
536 public Notification(int icon, CharSequence tickerText, long when)
540 this.when = when;
550 when = parcel.readLong();
606 that.when = this.when;
681 parcel.writeLong(when);
786 * <p>Uses the {@link #icon} and {@link #when} fields to set the icon and time fields
791 * @param contentIntent The intent to launch when the user clicks the expanded notification.
821 if (this.when != 0) {
823 contentView.setLong(R.id.time, "setTime", when);
980 * <tr><th align=right>when</th>
1006 * @see Notification#when
1008 public Builder setWhen(long when) {
1009 mWhen = when;
1023 * Show the {@link Notification#when} field as a stopwatch.
1025 * Instead of presenting <code>when</code> as a timestamp, the notification will show an
1026 * automatically updating display of the minutes and seconds since <code>when</code>.
1028 * Useful when showing an elapsed time (like an ongoing phone call).
1031 * @see Notification#when
1059 * level parameter for when the icon is a {@link android.graphics.drawable.LevelListDrawable
1143 * Supply a {@link PendingIntent} to be sent when the notification is clicked.
1159 * Supply a {@link PendingIntent} to send when the notification is cleared explicitly by the user.
1190 * Set the "ticker" text which is displayed in the status bar when the notification first
1201 * Set the text that is displayed in the status bar when the notification first
1320 * Make this notification automatically dismissed when the user touches it. The
1321 * PendingIntent set with {@link #setDeleteIntent} will be sent when this happens.
1387 * @param intent PendingIntent to be fired when the action is invoked.
1583 n.when = mWhen;
1778 * Override the large icon when the big notification is shown.