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

Commit 7ac5c002 authored by Robert Carr's avatar Robert Carr Committed by android-build-merger
Browse files

Merge "Merge "Disable requestVisibleBehind." into oc-dev am: e33c33e3 am:...

Merge "Merge "Disable requestVisibleBehind." into oc-dev am: e33c33e3 am: 1c89591f" into oc-dr1-dev-plus-aosp
am: 72f4e8e3

Change-Id: Ie77f01858b133233f8278e59edaa17fbc2f1a51c
parents 04007216 72f4e8e3
Loading
Loading
Loading
Loading
+1 −11
Original line number Diff line number Diff line
@@ -6416,17 +6416,7 @@ public class Activity extends ContextThemeWrapper
     */
    @Deprecated
    public boolean requestVisibleBehind(boolean visible) {
        if (!mResumed) {
            // Do not permit paused or stopped activities to do this.
            visible = false;
        }
        try {
            mVisibleBehind = ActivityManager.getService()
                    .requestVisibleBehind(mToken, visible) && visible;
        } catch (RemoteException e) {
            mVisibleBehind = false;
        }
        return mVisibleBehind;
        return false;
    }

    /**