From 3701cbef0f76144d66924b1724abb856e938e340 Mon Sep 17 00:00:00 2001
From: Andrew Solovay
Date: Fri, 2 May 2014 17:42:39 -0700
Subject: doc: Documented how to set notification priority.
This is related to change http://ag/459520, where I added info about appropriate
priority constants for setPriority(int)
Doc is staged to:
http://asolovay.mtv:8998/guide/topics/ui/notifiers/notifications.html#Priority
Bug: 13514649
Change-Id: I792e2f02614c88fbcfe1b0714a9c10da27eb6c37
---
.../html/guide/topics/ui/notifiers/notifications.jd | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
(limited to 'docs/html')
diff --git a/docs/html/guide/topics/ui/notifiers/notifications.jd b/docs/html/guide/topics/ui/notifiers/notifications.jd
index 3b1292e..59c2269 100644
--- a/docs/html/guide/topics/ui/notifiers/notifications.jd
+++ b/docs/html/guide/topics/ui/notifiers/notifications.jd
@@ -16,6 +16,7 @@ page.title=Notifications
Required notification contents
Optional notification contents and settings
Notification actions
+ Notification priority
Creating a simple notification
Applying a big view style to a notification
Handling compatibility
@@ -290,6 +291,26 @@ page.title=Notifications
{@link android.support.v4.app.NotificationCompat.Builder}.
+Notification priority
+
+ If you wish, you can set the priority of a notification. The priority acts
+ as a hint to the device UI about how the notification should be displayed.
+ To set a notification's priority, call {@link
+ android.support.v4.app.NotificationCompat.Builder#setPriority(int)
+ NotificationCompat.Builder.setPriority()} and pass in one of the {@link
+ android.support.v4.app.NotificationCompat} priority constants. There are
+ five priority levels, ranging from {@link
+ android.support.v4.app.NotificationCompat#PRIORITY_MIN} (-2) to {@link
+ android.support.v4.app.NotificationCompat#PRIORITY_MAX} (2); if not set, the
+ priority defaults to {@link
+ android.support.v4.app.NotificationCompat#PRIORITY_DEFAULT} (0).
+
+ For information about setting an appropriate priority level, see "Correctly
+ set and manage notification priority" in the Notifications Design
+ guide.
+
+
Creating a simple notification
The following snippet illustrates a simple notification that specifies an activity to open when
--
cgit v1.1