summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Miller <jaggies@google.com>2014-02-26 17:28:13 -0800
committerJim Miller <jaggies@google.com>2014-03-13 00:13:14 +0000
commit6f29b30dc28a66b8e1fb71884c777d995cab56aa (patch)
treea020b993d0a0d88161db53f98f725e58e4232ed6
parent73bd57f7abdb9eaf9239aa13945990acc6c97cd2 (diff)
downloadframeworks_base-6f29b30dc28a66b8e1fb71884c777d995cab56aa.zip
frameworks_base-6f29b30dc28a66b8e1fb71884c777d995cab56aa.tar.gz
frameworks_base-6f29b30dc28a66b8e1fb71884c777d995cab56aa.tar.bz2
Attempt to fix a bug where SIM progress dialog gets stuck.
The fix makes sure onPause() is called when KeyguardHostView is removed. Bug 10323372 Change-Id: I20dd1f68c270adbd4582f2cd8ed9b03964b4477c
-rw-r--r--packages/Keyguard/src/com/android/keyguard/KeyguardHostView.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/Keyguard/src/com/android/keyguard/KeyguardHostView.java b/packages/Keyguard/src/com/android/keyguard/KeyguardHostView.java
index 1bae9b8..3388887 100644
--- a/packages/Keyguard/src/com/android/keyguard/KeyguardHostView.java
+++ b/packages/Keyguard/src/com/android/keyguard/KeyguardHostView.java
@@ -1655,6 +1655,7 @@ public class KeyguardHostView extends KeyguardViewBase {
KeyguardWidgetFrame frame = mAppWidgetContainer.getWidgetPageAt(i);
frame.removeAllViews();
}
+ getSecurityContainer().onPause(); // clean up any actions in progress
}
/**