From 52df681309b07d58b10fe58170bfd6df44ac8ca0 Mon Sep 17 00:00:00 2001 From: Umashankar Godachi Date: Thu, 19 May 2016 14:16:44 -0700 Subject: MSIM: Fix to resolve SIM PIN unlock in APM. In MSIM case, with two sims being locked on pin, the second sim pin unlock screen does not get closed even with the correct password.This is due to the showDefaultMessage flag not being set to true after sim pin is verified successfully. Fix: In KeyGuardSimPinView, set the showDefaultMessage flag to true after SIM PIN is verified successfully. CRs-Fixed: 949288. TICKET: CYNGNOS-2766 Change-Id: Ie31ee9fb009314555c81f3787d0ef3af4aad74c7 --- packages/Keyguard/src/com/android/keyguard/KeyguardSimPinView.java | 1 + 1 file changed, 1 insertion(+) (limited to 'packages/Keyguard/src') diff --git a/packages/Keyguard/src/com/android/keyguard/KeyguardSimPinView.java b/packages/Keyguard/src/com/android/keyguard/KeyguardSimPinView.java index 4d26adf..8bd1f4f 100644 --- a/packages/Keyguard/src/com/android/keyguard/KeyguardSimPinView.java +++ b/packages/Keyguard/src/com/android/keyguard/KeyguardSimPinView.java @@ -260,6 +260,7 @@ public class KeyguardSimPinView extends KeyguardPinBasedInputView { mRemainingAttempts = -1; KeyguardUpdateMonitor.getInstance(getContext()) .reportSimUnlocked(mSubId); + mShowDefaultMessage = true; if (mCallback != null) { mCallback.dismiss(true); } -- cgit v1.1