Loading core/java/android/inputmethodservice/InputMethodService.java +3 −9 Original line number Diff line number Diff line Loading @@ -1456,16 +1456,10 @@ public class InputMethodService extends AbstractInputMethodService { final int previousImeWindowStatus = (mWindowVisible ? IME_ACTIVE : 0) | (isInputViewShown() ? IME_VISIBLE : 0); mWindowVisible = true; if (!mShowInputRequested) { if (mInputStarted) { if (showInput) { if (!mShowInputRequested && mInputStarted && showInput) { doShowInput = true; mShowInputRequested = true; } } } else { showInput = true; } if (DEBUG) Log.v(TAG, "showWindow: updating UI"); initialize(); Loading Loading
core/java/android/inputmethodservice/InputMethodService.java +3 −9 Original line number Diff line number Diff line Loading @@ -1456,16 +1456,10 @@ public class InputMethodService extends AbstractInputMethodService { final int previousImeWindowStatus = (mWindowVisible ? IME_ACTIVE : 0) | (isInputViewShown() ? IME_VISIBLE : 0); mWindowVisible = true; if (!mShowInputRequested) { if (mInputStarted) { if (showInput) { if (!mShowInputRequested && mInputStarted && showInput) { doShowInput = true; mShowInputRequested = true; } } } else { showInput = true; } if (DEBUG) Log.v(TAG, "showWindow: updating UI"); initialize(); Loading