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

Commit 92924917 authored by Lyn Han's avatar Lyn Han Committed by Automerger Merge Worker
Browse files

Merge "Add dumpsys log for AmbientState#hideAmount to debug notification...

Merge "Add dumpsys log for AmbientState#hideAmount to debug notification alpha" into sc-dev am: c60c0bb8 am: 30a54855

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14788754

Change-Id: I20c0f2431771e8f05a077b4301afe51721a51d78
parents d903fd98 30a54855
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -4667,8 +4667,9 @@ public class NotificationStackScrollLayout extends ViewGroup implements Dumpable
    @ShadeViewRefactor(RefactorComponent.SHADE_VIEW)
    public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
        pw.println(String.format("[%s: pulsing=%s qsCustomizerShowing=%s visibility=%s"
                        + " alpha:%f scrollY:%d maxTopPadding:%d showShelfOnly=%s"
                        + " qsExpandFraction=%f]",
                        + " alpha=%f scrollY:%d maxTopPadding=%d showShelfOnly=%s"
                        + " qsExpandFraction=%f"
                        + " hideAmount=%f]",
                this.getClass().getSimpleName(),
                mPulsing ? "T" : "f",
                mAmbientState.isQsCustomizerShowing() ? "T" : "f",
@@ -4679,7 +4680,8 @@ public class NotificationStackScrollLayout extends ViewGroup implements Dumpable
                mAmbientState.getScrollY(),
                mMaxTopPadding,
                mShouldShowShelfOnly ? "T" : "f",
                mQsExpansionFraction));
                mQsExpansionFraction,
                mAmbientState.getHideAmount()));
        int childCount = getChildCount();
        pw.println("  Number of children: " + childCount);
        pw.println();