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

Commit 4d696690 authored by Selim Cinek's avatar Selim Cinek Committed by Android (Google) Code Review
Browse files

Merge "Fixed a bug where redacted notifications had the wrong height" into mnc-dev

parents 1f52fce6 d06c41c9
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -1764,6 +1764,7 @@ public class NotificationStackScrollLayout extends ViewGroup
    }

    private void onViewAddedInternal(View child) {
        updateHideSensitiveForChild(child);
        mStackScrollAlgorithm.notifyChildrenChanged(this);
        ((ExpandableView) child).setOnHeightChangedListener(this);
        generateAddAnimation(child, false /* fromMoreCard */);
@@ -1776,6 +1777,13 @@ public class NotificationStackScrollLayout extends ViewGroup
        }
    }

    private void updateHideSensitiveForChild(View child) {
        if (mAmbientState.isHideSensitive() && child instanceof ExpandableView) {
            ExpandableView expandableView = (ExpandableView) child;
            expandableView.setHideSensitiveForIntrinsicHeight(true);
        }
    }

    public void notifyGroupChildRemoved(View row) {
        onViewRemovedInternal(row);
    }