java.lang.Object | |
↳ | android.app.NotificationManager |
Class to notify the user of events that happen. This is how you tell the user that something has happened in the background.
Notifications can take different forms:
Each of the notify methods takes an int id parameter. This id identifies
this notification from your app to the system, so that id should be unique
within your app. If you call one of the notify methods with an id that is
currently active and a new set of notification parameters, it will be
updated. For example, if you pass a new status bar icon, the old icon in
the status bar will be replaced with the new one. This is also the same
id you pass to the cancel(int)
method to clear this notification.
You do not instantiate this class directly; instead, retrieve it through
getSystemService(String)
.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Cancel a previously shown notification.
| |||||||||||
Cancel a previously shown notification.
| |||||||||||
Cancel all previously shown notifications.
| |||||||||||
Persistent notification on the status bar,
| |||||||||||
Persistent notification on the status bar,
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Cancel a previously shown notification. If it's transient, the view will be hidden. If it's persistent, it will be removed from the status bar.
Cancel a previously shown notification. If it's transient, the view will be hidden. If it's persistent, it will be removed from the status bar.
Cancel all previously shown notifications. See cancel(int)
for the
detailed behavior.
Persistent notification on the status bar,
id | An identifier for this notification unique within your application. |
---|---|
notification | A Notification object describing how to
notify the user, other than the view you're providing. Must not be null.
|
Persistent notification on the status bar,
tag | An string identifier for this notification unique within your application. |
---|---|
notification | A Notification object describing how to
notify the user, other than the view you're providing. Must not be null. |