summaryrefslogtreecommitdiff
path: root/core/java/android/inputmethodservice/InputMethodService.java
diff options
context:
space:
mode:
authorSatoshi Kataoka <satok@android.com>2013-04-18 15:28:18 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-04-18 15:28:18 -0700
commitf09993ca1d01823f9c60c0be45a8169e09dd27d7 (patch)
tree454a039f4714769f4ce78f9e9d7d500591b6593a /core/java/android/inputmethodservice/InputMethodService.java
parent253bc7505c890d57466ce251369367ac384cff67 (diff)
parent1a546dca77b47b86c87ddf4de7a76662ef8bd48b (diff)
am 1a546dca: Merge "Fixed the problem ime invisible status despite being the icon that appears in the statusbar."
* commit '1a546dca77b47b86c87ddf4de7a76662ef8bd48b': Fixed the problem ime invisible status despite being the icon that appears in the statusbar.
Diffstat (limited to 'core/java/android/inputmethodservice/InputMethodService.java')
-rw-r--r--core/java/android/inputmethodservice/InputMethodService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/inputmethodservice/InputMethodService.java b/core/java/android/inputmethodservice/InputMethodService.java
index 2b15afdde9ea..4881d1433489 100644
--- a/core/java/android/inputmethodservice/InputMethodService.java
+++ b/core/java/android/inputmethodservice/InputMethodService.java
@@ -431,7 +431,7 @@ public class InputMethodService extends AbstractInputMethodService {
}
}
// If user uses hard keyboard, IME button should always be shown.
- boolean showing = onEvaluateInputViewShown();
+ boolean showing = isInputViewShown();
mImm.setImeWindowStatus(mToken, IME_ACTIVE | (showing ? IME_VISIBLE : 0),
mBackDisposition);
if (resultReceiver != null) {