Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 69f93f7b authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "[ENR] Improve Group Notif dump" into main

parents 56c6f203 bf742c7f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -3873,7 +3873,11 @@ public class ExpandableNotificationRow extends ActivatableNotificationView
            pw.print(", mShowingPublicInitialized: " + mShowingPublicInitialized);
            NotificationContentView showingLayout = getShowingLayout();
            pw.print(", privateShowing: " + (showingLayout == mPrivateLayout));
            pw.print(", childrenContainerShowing: "
                    + (!shouldShowPublic() && mIsSummaryWithChildren));
            pw.print(", mShowNoBackground: " + mShowNoBackground);
            pw.print(", clipBounds: " + getClipBounds());

            pw.println();
            if (NotificationContentView.INCLUDE_HEIGHTS_TO_DUMP) {
                dumpHeights(pw);
@@ -3896,6 +3900,8 @@ public class ExpandableNotificationRow extends ActivatableNotificationView
                    ? 0 : mChildrenContainer.getTransientViewCount();
            if (mIsSummaryWithChildren || transientViewCount > 0) {
                pw.println(mChildrenContainer.debugString());
                pw.println("Children Container Intrinsic Height: "
                        + mChildrenContainer.getIntrinsicHeight());
                pw.println();
                List<ExpandableNotificationRow> notificationChildren = getAttachedChildren();
                pw.print("Children: " + notificationChildren.size() + " {");
+1 −0
Original line number Diff line number Diff line
@@ -1704,6 +1704,7 @@ public class NotificationChildrenContainer extends ViewGroup
                + "visibility: " + getVisibility()
                + ", alpha: " + getAlpha()
                + ", translationY: " + getTranslationY()
                + ", clipBounds: " + getClipBounds()
                + ", roundableState: " + getRoundableState().debugString() + "}";
    }
}