From 645c910f16c5f43389a09991a410b2305105cbb5 Mon Sep 17 00:00:00 2001 From: Jeff DeCew Date: Wed, 9 Aug 2023 10:02:47 -0400 Subject: [PATCH] Classify group summaries as a special kind of style Test: perfetto Bug: 290358029 Change-Id: Ibf55afe24ad2ba14458ebba5344f0aa13eee8c54 --- .../statusbar/notification/row/ExpandableNotificationRow.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java index ed489a6c5343f..d92d11b18d744 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java @@ -1894,6 +1894,9 @@ public class ExpandableNotificationRow extends ActivatableNotificationView return traceTag; } + if (isSummaryWithChildren()) { + return traceTag + "(summary)"; + } Class style = getEntry().getSbn().getNotification().getNotificationStyle(); if (style == null) {