diff --git a/services/core/java/com/android/server/inputmethod/InputMethodBindingController.java b/services/core/java/com/android/server/inputmethod/InputMethodBindingController.java index 8c88d4c48837e..47e0e69401bb6 100644 --- a/services/core/java/com/android/server/inputmethod/InputMethodBindingController.java +++ b/services/core/java/com/android/server/inputmethod/InputMethodBindingController.java @@ -515,7 +515,7 @@ final class InputMethodBindingController { if (DEBUG) { Slog.d(TAG, "Cannot show input: no IME bound. Rebinding."); } - bindCurrentMethodLocked(); + bindCurrentMethod(); return; } diff --git a/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java b/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java index 7d1be14d4d31a..41d8332089fec 100644 --- a/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java +++ b/services/core/java/com/android/server/inputmethod/InputMethodManagerService.java @@ -2411,7 +2411,7 @@ public class InputMethodManagerService extends IInputMethodManager.Stub if (DEBUG) { Slog.d(TAG, "Avoiding IME startup and unbinding current input method."); } - mBindingController.unbindCurrentMethodLocked(); + mBindingController.unbindCurrentMethod(); return InputBindResult.NO_EDITOR; }