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

Commit bdda6200 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:...

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

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

Change-Id: I5acee94cc5498f96def18810a29c55291b6987ff
parents 7ebde60e 1d292adc
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();
            }
        }