Make IME less sticky when launching a new app b/31382106

am: 7e83ab90ae

Change-Id: I1f3fac72ce6ba14ea0c116f71f398ff2727469af
This commit is contained in:
Hyunyoung Song
2016-09-22 00:30:49 +00:00
committed by android-build-merger
@@ -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);
}
}