From a10e963951afedb07dc484881c7fc6413da10260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Kurucz?= Date: Fri, 21 Jul 2023 14:28:12 +0000 Subject: [PATCH] Dump ExpandableNotificationRow#mShowNobackground We have some bugs, where this property gets out of sync form the expected state. Bug: 292204125 Test: adb shell dumpsys activity service com.android.systemui/.SystemUIService NotificationStackScrollLayout Change-Id: I6ed178420a886f374221675979c871dd189300e0 --- .../statusbar/notification/row/ExpandableNotificationRow.java | 1 + 1 file changed, 1 insertion(+) 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 42b99a1dc68c3..ed489a6c5343f 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 @@ -3678,6 +3678,7 @@ public class ExpandableNotificationRow extends ActivatableNotificationView pw.print(", mShowingPublicInitialized: " + mShowingPublicInitialized); NotificationContentView showingLayout = getShowingLayout(); pw.print(", privateShowing: " + (showingLayout == mPrivateLayout)); + pw.print(", mShowNoBackground: " + mShowNoBackground); pw.println(); showingLayout.dump(pw, args);