Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarKeyguardViewManager.java +3 −2 Original line number Original line Diff line number Diff line Loading @@ -113,7 +113,7 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb // Since we won't get a setOccluded call we have to reset the view manually such that // Since we won't get a setOccluded call we have to reset the view manually such that // the bouncer goes away. // the bouncer goes away. if (mOccluded) { if (mOccluded) { reset(false /* hideBouncerWhenShowing */); reset(true /* hideBouncerWhenShowing */); } } } } }; }; Loading Loading @@ -316,6 +316,7 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb return; return; } } } } boolean isOccluding = !mOccluded && occluded; mOccluded = occluded; mOccluded = occluded; if (mShowing) { if (mShowing) { mStatusBar.updateMediaMetaData(false, animate && !occluded); mStatusBar.updateMediaMetaData(false, animate && !occluded); Loading @@ -326,7 +327,7 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb if (!mDozing) { if (!mDozing) { // If Keyguard is reshown, don't hide the bouncer as it might just have been requested // If Keyguard is reshown, don't hide the bouncer as it might just have been requested // by a FLAG_DISMISS_KEYGUARD_ACTIVITY. // by a FLAG_DISMISS_KEYGUARD_ACTIVITY. reset(false /* hideBouncerWhenShowing*/); reset(isOccluding /* hideBouncerWhenShowing*/); } } if (animate && !occluded && mShowing) { if (animate && !occluded && mShowing) { mStatusBar.animateKeyguardUnoccluding(); mStatusBar.animateKeyguardUnoccluding(); Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarKeyguardViewManager.java +3 −2 Original line number Original line Diff line number Diff line Loading @@ -113,7 +113,7 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb // Since we won't get a setOccluded call we have to reset the view manually such that // Since we won't get a setOccluded call we have to reset the view manually such that // the bouncer goes away. // the bouncer goes away. if (mOccluded) { if (mOccluded) { reset(false /* hideBouncerWhenShowing */); reset(true /* hideBouncerWhenShowing */); } } } } }; }; Loading Loading @@ -316,6 +316,7 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb return; return; } } } } boolean isOccluding = !mOccluded && occluded; mOccluded = occluded; mOccluded = occluded; if (mShowing) { if (mShowing) { mStatusBar.updateMediaMetaData(false, animate && !occluded); mStatusBar.updateMediaMetaData(false, animate && !occluded); Loading @@ -326,7 +327,7 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb if (!mDozing) { if (!mDozing) { // If Keyguard is reshown, don't hide the bouncer as it might just have been requested // If Keyguard is reshown, don't hide the bouncer as it might just have been requested // by a FLAG_DISMISS_KEYGUARD_ACTIVITY. // by a FLAG_DISMISS_KEYGUARD_ACTIVITY. reset(false /* hideBouncerWhenShowing*/); reset(isOccluding /* hideBouncerWhenShowing*/); } } if (animate && !occluded && mShowing) { if (animate && !occluded && mShowing) { mStatusBar.animateKeyguardUnoccluding(); mStatusBar.animateKeyguardUnoccluding(); Loading