Loading packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +3 −0 Original line number Diff line number Diff line Loading @@ -1728,6 +1728,7 @@ public class KeyguardViewMediator extends SystemUI { // this to our ViewRootImpl. mStatusBarKeyguardViewManager.getViewRootImpl().setReportNextDraw(); notifyDrawn(mDrawnCallback); mDrawnCallback = null; } // only play "unlock" noises if not on a call (since the incall UI Loading @@ -1736,6 +1737,7 @@ public class KeyguardViewMediator extends SystemUI { playSounds(false); } mWakeAndUnlocking = false; setShowingLocked(false); mStatusBarKeyguardViewManager.hide(startTime, fadeoutDuration); resetKeyguardDonePendingLocked(); Loading Loading @@ -1862,6 +1864,7 @@ public class KeyguardViewMediator extends SystemUI { synchronized (this) { if (DEBUG) Log.d(TAG, "handleNotifyScreenTurnedOff"); mStatusBarKeyguardViewManager.onScreenTurnedOff(); mDrawnCallback = null; mWakeAndUnlocking = false; } } Loading services/core/java/com/android/server/wm/WindowManagerService.java +2 −1 Original line number Diff line number Diff line Loading @@ -11445,8 +11445,9 @@ public class WindowManagerService extends IWindowManager.Stub for (int winNdx = windows.size() - 1; winNdx >= 0; --winNdx) { final WindowState win = windows.get(winNdx); final boolean isForceHiding = mPolicy.isForceHiding(win.mAttrs); final boolean keyguard = mPolicy.isKeyguardHostWindow(win.mAttrs); if (win.isVisibleLw() && (win.mAppToken != null || isForceHiding)) { && (win.mAppToken != null || isForceHiding || keyguard)) { win.mWinAnimator.mDrawState = DRAW_PENDING; // Force add to mResizingWindows. win.mLastContentInsets.set(-1, -1, -1, -1); Loading Loading
packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +3 −0 Original line number Diff line number Diff line Loading @@ -1728,6 +1728,7 @@ public class KeyguardViewMediator extends SystemUI { // this to our ViewRootImpl. mStatusBarKeyguardViewManager.getViewRootImpl().setReportNextDraw(); notifyDrawn(mDrawnCallback); mDrawnCallback = null; } // only play "unlock" noises if not on a call (since the incall UI Loading @@ -1736,6 +1737,7 @@ public class KeyguardViewMediator extends SystemUI { playSounds(false); } mWakeAndUnlocking = false; setShowingLocked(false); mStatusBarKeyguardViewManager.hide(startTime, fadeoutDuration); resetKeyguardDonePendingLocked(); Loading Loading @@ -1862,6 +1864,7 @@ public class KeyguardViewMediator extends SystemUI { synchronized (this) { if (DEBUG) Log.d(TAG, "handleNotifyScreenTurnedOff"); mStatusBarKeyguardViewManager.onScreenTurnedOff(); mDrawnCallback = null; mWakeAndUnlocking = false; } } Loading
services/core/java/com/android/server/wm/WindowManagerService.java +2 −1 Original line number Diff line number Diff line Loading @@ -11445,8 +11445,9 @@ public class WindowManagerService extends IWindowManager.Stub for (int winNdx = windows.size() - 1; winNdx >= 0; --winNdx) { final WindowState win = windows.get(winNdx); final boolean isForceHiding = mPolicy.isForceHiding(win.mAttrs); final boolean keyguard = mPolicy.isKeyguardHostWindow(win.mAttrs); if (win.isVisibleLw() && (win.mAppToken != null || isForceHiding)) { && (win.mAppToken != null || isForceHiding || keyguard)) { win.mWinAnimator.mDrawState = DRAW_PENDING; // Force add to mResizingWindows. win.mLastContentInsets.set(-1, -1, -1, -1); Loading