diff options
| author | 2017-05-31 13:45:52 -0400 | |
|---|---|---|
| committer | 2017-05-31 17:58:08 +0000 | |
| commit | 8f7828ebe7fc6d87e0de112cfda2823fd5818cb2 (patch) | |
| tree | 760ba6970ccc81620315a287b31b4891ed34ae04 | |
| parent | db0836779ea7bb36088ebe77de14461b2a0cc033 (diff) | |
Change default for group alert behavior
To alert for children but not the summary.
Bug: 62027641
Test: cts
Change-Id: Ie7978514be45be6b13c2ea3bd7ff898db352a1ed
| -rw-r--r-- | core/java/android/app/Notification.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index c626ae9630b8..31f52dbea548 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -1168,7 +1168,7 @@ public class Notification implements Parcelable */ public static final int GROUP_ALERT_CHILDREN = 2; - private int mGroupAlertBehavior = GROUP_ALERT_ALL; + private int mGroupAlertBehavior = GROUP_ALERT_CHILDREN; /** * If this notification is being shown as a badge, always show as a number. |