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

Commit 7e83ab90 authored by Hyunyoung Song's avatar Hyunyoung Song
Browse files

Make IME less sticky when launching a new app

b/31382106

Change-Id: Iee60a2f7e6a70858623e80d4b8b68154d1941210
parent 3f9d647d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -97,6 +97,6 @@ public class ExtendedEditText extends EditText {
    private boolean showSoftInput() {
        return requestFocus() &&
                ((InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE))
                    .showSoftInput(this, InputMethodManager.SHOW_FORCED);
                    .showSoftInput(this, InputMethodManager.SHOW_IMPLICIT);
    }
}