Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1d292adc authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Don't dismiss IME when changing active RemoteInput" into sc-dev am: 3b5e4d29

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14937173

Change-Id: I224e156f52592d8cb064e6dbe6246cc88bb15319
parents dcdabcea 3b5e4d29
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -777,7 +777,8 @@ public class RemoteInputView extends LinearLayout implements View.OnClickListene
            mOnVisibilityChangedListener.accept(visibility == VISIBLE);
            // Hide soft-keyboard when the input view became invisible
            // (i.e. The notification shade collapsed by pressing the home key)
            if (visibility != VISIBLE && !mEditText.isVisibleToUser()) {
            if (visibility != VISIBLE && !mEditText.isVisibleToUser()
                    && !mController.isRemoteInputActive()) {
                mEditText.hideIme();
            }
        }