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

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

Merge "Use consistent animation when forcibly hiding non system overlay" into tm-dev

parents baf44a7a dd71ab6b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -3334,6 +3334,10 @@ class WindowState extends WindowContainer<WindowState> implements WindowManagerP
        return true;
    }

    boolean isForceHiddenNonSystemOverlayWindow() {
        return mForceHideNonSystemOverlayWindow;
    }

    void setForceHideNonSystemOverlayWindowIfNeeded(boolean forceHide) {
        final int baseType = getBaseType();
        if (mSession.mCanAddInternalSystemWindow
+5 −0
Original line number Diff line number Diff line
@@ -57,6 +57,7 @@ import android.view.Surface.OutOfResourcesException;
import android.view.SurfaceControl;
import android.view.WindowManager;
import android.view.WindowManager.LayoutParams;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;

@@ -623,6 +624,10 @@ class WindowStateAnimator {
                    a = AnimationUtils.loadAnimation(mContext, anim);
                    Trace.traceEnd(Trace.TRACE_TAG_WINDOW_MANAGER);
                }
            } else if (!isEntrance && mWin.isForceHiddenNonSystemOverlayWindow()) {
                a = new AlphaAnimation(1f, 0f);
                a.setDuration(mContext.getResources().getInteger(
                        com.android.internal.R.integer.config_shortAnimTime));
            } else {
                switch (transit) {
                    case WindowManagerPolicy.TRANSIT_ENTER: