|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectandroid.support.v4.app.NotificationCompat.Builder
public static class NotificationCompat.Builder
Builder class for NotificationCompat
objects. Allows easier control over
all the flags, as well as help constructing the typical notification layouts.
On platform versions that don't offer expanded notifications, methods that depend on expanded notifications have no effect.
For example, action buttons won't appear on platforms prior to Android 4.1. Action buttons depend on expanded notifications, which are only available in Android 4.1 and later.
For this reason, you should always ensure that UI controls in a notification are also
available in an Activity
in your app, and you should always start that
Activity
when users click the notification. To do this, use the
setContentIntent()
method.
Constructor Summary | |
---|---|
NotificationCompat.Builder(android.content.Context context)
Constructor. |
Method Summary | |
---|---|
NotificationCompat.Builder |
addAction(int icon,
CharSequence title,
android.app.PendingIntent intent)
Add an action to this notification. |
android.app.Notification |
build()
Combine all of the options that have been set and return a new Notification
object. |
android.app.Notification |
getNotification()
Deprecated. Use build() instead. |
NotificationCompat.Builder |
setAutoCancel(boolean autoCancel)
Setting this flag will make it so the notification is automatically canceled when the user clicks it in the panel. |
NotificationCompat.Builder |
setContent(android.widget.RemoteViews views)
Supply a custom RemoteViews to use instead of the standard one. |
NotificationCompat.Builder |
setContentInfo(CharSequence info)
Set the large text at the right-hand side of the notification. |
NotificationCompat.Builder |
setContentIntent(android.app.PendingIntent intent)
Supply a PendingIntent to send when the notification is clicked. |
NotificationCompat.Builder |
setContentText(CharSequence text)
Set the text (second row) of the notification, in a standard notification. |
NotificationCompat.Builder |
setContentTitle(CharSequence title)
Set the title (first row) of the notification, in a standard notification. |
NotificationCompat.Builder |
setDefaults(int defaults)
Set the default notification options that will be used. |
NotificationCompat.Builder |
setDeleteIntent(android.app.PendingIntent intent)
Supply a PendingIntent to send when the notification is cleared by the user
directly from the notification panel. |
NotificationCompat.Builder |
setFullScreenIntent(android.app.PendingIntent intent,
boolean highPriority)
An intent to launch instead of posting the notification to the status bar. |
NotificationCompat.Builder |
setLargeIcon(android.graphics.Bitmap icon)
Set the large icon that is shown in the ticker and notification. |
NotificationCompat.Builder |
setLights(int argb,
int onMs,
int offMs)
Set the argb value that you would like the LED on the device to blnk, as well as the rate. |
NotificationCompat.Builder |
setNumber(int number)
Set the large number at the right-hand side of the notification. |
NotificationCompat.Builder |
setOngoing(boolean ongoing)
Set whether this is an ongoing notification. |
NotificationCompat.Builder |
setOnlyAlertOnce(boolean onlyAlertOnce)
Set this flag if you would only like the sound, vibrate and ticker to be played if the notification is not already showing. |
NotificationCompat.Builder |
setPriority(int pri)
Set the relative priority for this notification. |
NotificationCompat.Builder |
setProgress(int max,
int progress,
boolean indeterminate)
Set the progress this notification represents, which may be represented as a ProgressBar . |
NotificationCompat.Builder |
setSmallIcon(int icon)
Set the small icon to use in the notification layouts. |
NotificationCompat.Builder |
setSmallIcon(int icon,
int level)
A variant of setSmallIcon(int) that takes an additional
level parameter for when the icon is a LevelListDrawable . |
NotificationCompat.Builder |
setSound(android.net.Uri sound)
Set the sound to play. |
NotificationCompat.Builder |
setSound(android.net.Uri sound,
int streamType)
Set the sound to play. |
NotificationCompat.Builder |
setStyle(NotificationCompat.Style style)
Add a rich notification style to be applied at build time. |
NotificationCompat.Builder |
setSubText(CharSequence text)
Set the third line of text in the platform notification template. |
NotificationCompat.Builder |
setTicker(CharSequence tickerText)
Set the text that is displayed in the status bar when the notification first arrives. |
NotificationCompat.Builder |
setTicker(CharSequence tickerText,
android.widget.RemoteViews views)
Set the text that is displayed in the status bar when the notification first arrives, and also a RemoteViews object that may be displayed instead on some devices. |
NotificationCompat.Builder |
setUsesChronometer(boolean b)
Show the Notification.when field as a stopwatch. |
NotificationCompat.Builder |
setVibrate(long[] pattern)
Set the vibration pattern to use. |
NotificationCompat.Builder |
setWhen(long when)
Set the time that the event occurred. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public NotificationCompat.Builder(android.content.Context context)
System.currentTimeMillis()
and the audio stream to the
Notification.STREAM_DEFAULT
.
context
- A Context
that will be used to construct the
RemoteViews. The Context will not be held past the lifetime of this
Builder object.Method Detail |
---|
public NotificationCompat.Builder setWhen(long when)
public NotificationCompat.Builder setUsesChronometer(boolean b)
Notification.when
field as a stopwatch.
Instead of presenting when
as a timestamp, the notification will show an
automatically updating display of the minutes and seconds since when
.
Useful when showing an elapsed time (like an ongoing phone call).
Chronometer
,
Notification.when
public NotificationCompat.Builder setSmallIcon(int icon)
icon
- A resource ID in the application's package of the drawble to use.public NotificationCompat.Builder setSmallIcon(int icon, int level)
setSmallIcon(int)
that takes an additional
level parameter for when the icon is a LevelListDrawable
.
icon
- A resource ID in the application's package of the drawble to use.level
- The level to use for the icon.LevelListDrawable
public NotificationCompat.Builder setContentTitle(CharSequence title)
public NotificationCompat.Builder setContentText(CharSequence text)
public NotificationCompat.Builder setSubText(CharSequence text)
setProgress(int, int, boolean)
;
they occupy the same location in the standard template.
public NotificationCompat.Builder setNumber(int number)
public NotificationCompat.Builder setContentInfo(CharSequence info)
public NotificationCompat.Builder setProgress(int max, int progress, boolean indeterminate)
ProgressBar
.
public NotificationCompat.Builder setContent(android.widget.RemoteViews views)
public NotificationCompat.Builder setContentIntent(android.app.PendingIntent intent)
PendingIntent
to send when the notification is clicked.
If you do not supply an intent, you can now add PendingIntents to individual
views to be launched when clicked by calling RemoteViews.setOnClickPendingIntent(int,PendingIntent)
. Be sure to
read Notification.contentIntent
for
how to correctly use this.
public NotificationCompat.Builder setDeleteIntent(android.app.PendingIntent intent)
PendingIntent
to send when the notification is cleared by the user
directly from the notification panel. For example, this intent is sent when the user
clicks the "Clear all" button, or the individual "X" buttons on notifications. This
intent is not sent when the application calls NotificationManager.cancel(int)
.
public NotificationCompat.Builder setFullScreenIntent(android.app.PendingIntent intent, boolean highPriority)
intent
- The pending intent to launch.highPriority
- Passing true will cause this notification to be sent
even if other notifications are suppressed.public NotificationCompat.Builder setTicker(CharSequence tickerText)
public NotificationCompat.Builder setTicker(CharSequence tickerText, android.widget.RemoteViews views)
public NotificationCompat.Builder setLargeIcon(android.graphics.Bitmap icon)
public NotificationCompat.Builder setSound(android.net.Uri sound)
public NotificationCompat.Builder setSound(android.net.Uri sound, int streamType)
#STREAM_DEFAULT
,
for the STREAM_
constants.
public NotificationCompat.Builder setVibrate(long[] pattern)
for a discussion of the pattern
parameter.
public NotificationCompat.Builder setLights(int argb, int onMs, int offMs)
public NotificationCompat.Builder setOngoing(boolean ongoing)
Ongoing notifications differ from regular notifications in the following ways:
public NotificationCompat.Builder setOnlyAlertOnce(boolean onlyAlertOnce)
public NotificationCompat.Builder setAutoCancel(boolean autoCancel)
setDeleteIntent(android.app.PendingIntent)
will be broadcast when the notification
is canceled.
public NotificationCompat.Builder setDefaults(int defaults)
The value should be one or more of the following fields combined with
bitwise-or:
Notification.DEFAULT_SOUND
, Notification.DEFAULT_VIBRATE
,
Notification.DEFAULT_LIGHTS
.
For all default values, use Notification.DEFAULT_ALL
.
public NotificationCompat.Builder setPriority(int pri)
public NotificationCompat.Builder addAction(int icon, CharSequence title, android.app.PendingIntent intent)
Activity
that starts when a user
clicks the notification (see setContentIntent()
), and then
enhance the notification by implementing the same functionality with
addAction()
.
icon
- Resource ID of a drawable that represents the action.title
- Text describing the action.intent
- PendingIntent
to be fired when the action is invoked.public NotificationCompat.Builder setStyle(NotificationCompat.Style style)
style
- Object responsible for modifying the notification style.@Deprecated public android.app.Notification getNotification()
build()
instead.
public android.app.Notification build()
Notification
object.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |