Loading core/java/android/inputmethodservice/InputMethodService.java +4 −0 Original line number Diff line number Diff line Loading @@ -3504,6 +3504,10 @@ public class InputMethodService extends AbstractInputMethodService { mInlineSuggestionSessionController.notifyOnStartInputView(); onStartInputView(mInputEditorInfo, restarting); startExtractingText(true); // Back callback is typically registered in {@link #showWindow()}, but it's possible // for {@link #doStartInput()} to be called without {@link #showWindow()} so we also // register here. registerDefaultOnBackInvokedCallback(); } else if (mCandidatesVisibility == View.VISIBLE) { if (DEBUG) Log.v(TAG, "CALL: onStartCandidatesView"); mCandidatesViewStarted = true; Loading Loading
core/java/android/inputmethodservice/InputMethodService.java +4 −0 Original line number Diff line number Diff line Loading @@ -3504,6 +3504,10 @@ public class InputMethodService extends AbstractInputMethodService { mInlineSuggestionSessionController.notifyOnStartInputView(); onStartInputView(mInputEditorInfo, restarting); startExtractingText(true); // Back callback is typically registered in {@link #showWindow()}, but it's possible // for {@link #doStartInput()} to be called without {@link #showWindow()} so we also // register here. registerDefaultOnBackInvokedCallback(); } else if (mCandidatesVisibility == View.VISIBLE) { if (DEBUG) Log.v(TAG, "CALL: onStartCandidatesView"); mCandidatesViewStarted = true; Loading