diff options
| author | Satoshi Kataoka <satok@android.com> | 2013-04-18 17:43:37 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-04-18 17:43:38 +0000 |
| commit | 1a546dca77b47b86c87ddf4de7a76662ef8bd48b (patch) | |
| tree | 3a7ddc39ba78d4c1671672a1dedcb3faf6898323 /core/java/android/inputmethodservice/InputMethodService.java | |
| parent | 6a67a38f46cafdb9a9cedf3351f7150140cf0bd7 (diff) | |
| parent | 217fd2903d09d40cabcdade9f2a162dc6513f800 (diff) | |
Merge "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.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/inputmethodservice/InputMethodService.java b/core/java/android/inputmethodservice/InputMethodService.java index 6f1cc942c965..d6b90c3f331e 100644 --- a/core/java/android/inputmethodservice/InputMethodService.java +++ b/core/java/android/inputmethodservice/InputMethodService.java @@ -424,7 +424,7 @@ public class InputMethodService extends AbstractInputMethodService { showWindow(true); } // 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) { |
