From 3a221ed5bc7ccfc1a984e931a951261a431ceef2 Mon Sep 17 00:00:00 2001 From: Julia Reynolds Date: Wed, 5 Apr 2023 09:19:07 -0400 Subject: [PATCH] Clarify documentation Test: make Fixes: 262592760 Change-Id: I215b64891094924a42e3a20e0ca305645b96c592 --- core/java/android/app/Notification.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index 7aedd30d660e4..96d785f0df9c4 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -4067,8 +4067,9 @@ public class Notification implements Parcelable * notification if alerts for this notification's group should be handled by a different * notification. This is only applicable for notifications that belong to a * {@link #setGroup(String) group}. This must be called on all notifications you want to - * mute. For example, if you want only the summary of your group to make noise, all - * children in the group should have the group alert behavior {@link #GROUP_ALERT_SUMMARY}. + * mute. For example, if you want only the summary of your group to make noise and/or peek + * on screen, all children in the group should have the group alert behavior + * {@link #GROUP_ALERT_SUMMARY}. * *

The default value is {@link #GROUP_ALERT_ALL}.

*/