Merge "Fix lockscreen bugs with SHOW_WHEN_LOCKED"
This commit is contained in:
@@ -867,6 +867,12 @@ public class KeyguardViewMediator extends SystemUI {
|
||||
*/
|
||||
private void handleSetOccluded(boolean isOccluded) {
|
||||
synchronized (KeyguardViewMediator.this) {
|
||||
if (mHiding && isOccluded) {
|
||||
// We're in the process of going away but WindowManager wants to show a
|
||||
// SHOW_WHEN_LOCKED activity instead.
|
||||
startKeyguardExitAnimation(0, 0);
|
||||
}
|
||||
|
||||
if (mOccluded != isOccluded) {
|
||||
mOccluded = isOccluded;
|
||||
mStatusBarKeyguardViewManager.setOccluded(isOccluded);
|
||||
|
||||
@@ -145,6 +145,9 @@ public class KeyguardServiceDelegate {
|
||||
if (mKeyguardState.bootCompleted) {
|
||||
mKeyguardService.onBootCompleted();
|
||||
}
|
||||
if (mKeyguardState.occluded) {
|
||||
mKeyguardService.setOccluded(mKeyguardState.occluded);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user