Loading core/java/android/view/inputmethod/InputMethodManager.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -2165,7 +2165,7 @@ public final class InputMethodManager { // Re-dispatch if there is a context mismatch. // Re-dispatch if there is a context mismatch. final InputMethodManager fallbackImm = getFallbackInputMethodManagerIfNecessary(view); final InputMethodManager fallbackImm = getFallbackInputMethodManagerIfNecessary(view); if (fallbackImm != null) { if (fallbackImm != null) { return fallbackImm.showSoftInput(view, flags, resultReceiver); return fallbackImm.showSoftInput(view, statsToken, flags, resultReceiver, reason); } } checkFocus(); checkFocus(); Loading Loading
core/java/android/view/inputmethod/InputMethodManager.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -2165,7 +2165,7 @@ public final class InputMethodManager { // Re-dispatch if there is a context mismatch. // Re-dispatch if there is a context mismatch. final InputMethodManager fallbackImm = getFallbackInputMethodManagerIfNecessary(view); final InputMethodManager fallbackImm = getFallbackInputMethodManagerIfNecessary(view); if (fallbackImm != null) { if (fallbackImm != null) { return fallbackImm.showSoftInput(view, flags, resultReceiver); return fallbackImm.showSoftInput(view, statsToken, flags, resultReceiver, reason); } } checkFocus(); checkFocus(); Loading