diff options
author | Dianne Hackborn <hackbod@google.com> | 2014-03-24 11:27:18 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2014-03-24 11:28:27 -0700 |
commit | 6b6b3fdbf5547417fde3ce56d9eb883963a54b58 (patch) | |
tree | 9c426deb9bfe423905e54c19107d510d3fe6cd90 /core/java/android/view/inputmethod | |
parent | e9c9c441346586e26eccc0523fcf12f5158e53f7 (diff) | |
download | frameworks_base-6b6b3fdbf5547417fde3ce56d9eb883963a54b58.zip frameworks_base-6b6b3fdbf5547417fde3ce56d9eb883963a54b58.tar.gz frameworks_base-6b6b3fdbf5547417fde3ce56d9eb883963a54b58.tar.bz2 |
Fix issue #13564072: Back button no longer dismisses IME after voice usage
Calling identity wasn't being cleared in an incoming code path.
Change-Id: Ib32060a91bf81531de049fafde69835b5382a25f
Diffstat (limited to 'core/java/android/view/inputmethod')
-rw-r--r-- | core/java/android/view/inputmethod/InputMethodManager.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/view/inputmethod/InputMethodManager.java b/core/java/android/view/inputmethod/InputMethodManager.java index e812edd..f2ce113 100644 --- a/core/java/android/view/inputmethod/InputMethodManager.java +++ b/core/java/android/view/inputmethod/InputMethodManager.java @@ -714,6 +714,7 @@ public final class InputMethodManager { * Reset all of the state associated with being bound to an input method. */ void clearBindingLocked() { + if (DEBUG) Log.v(TAG, "Clearing binding!"); clearConnectionLocked(); setInputChannelLocked(null); mBindSequence = -1; |