diff options
| author | 2018-12-06 03:56:25 +0000 | |
|---|---|---|
| committer | 2018-12-06 03:56:25 +0000 | |
| commit | 5dbc2f59268a3030d712d87bbab2387192f740d9 (patch) | |
| tree | 554e6918c81042ba2f5d3bb73a0cc719d95bcf56 | |
| parent | 3f452404bd5f4c863dec5ed02173aa3abadd11d4 (diff) | |
| parent | 0db74591134a1f3a1a088bfbb095973274d84afd (diff) | |
Merge "Adding more debugging for group children"
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java | 6 |
1 files changed, 6 insertions, 0 deletions
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 694c574cbf53..8214ea6c7616 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 @@ -3141,6 +3141,7 @@ public class ExpandableNotificationRow extends ActivatableNotificationView pw.print(", alpha: " + getAlpha()); pw.print(", translation: " + getTranslation()); pw.print(", removed: " + isRemoved()); + pw.print(", expandAnimationRunning: " + mExpandAnimationRunning); NotificationContentView showingLayout = getShowingLayout(); pw.print(", privateShowing: " + (showingLayout == mPrivateLayout)); pw.println(); @@ -3154,6 +3155,11 @@ public class ExpandableNotificationRow extends ActivatableNotificationView pw.println(); pw.println(); if (mIsSummaryWithChildren) { + pw.print(" ChildrenContainer"); + pw.print(" visibility: " + mChildrenContainer.getVisibility()); + pw.print(", alpha: " + mChildrenContainer.getAlpha()); + pw.print(", translationY: " + mChildrenContainer.getTranslationY()); + pw.println(); List<ExpandableNotificationRow> notificationChildren = getNotificationChildren(); pw.println(" Children: " + notificationChildren.size()); pw.println(" {"); |