Merge "Make IME less sticky when launching a new app b/31382106" into ub-launcher3-calgary-polish

This commit is contained in:
Hyunyoung Song
2016-09-22 00:10:55 +00:00
committed by Android (Google) Code Review
@@ -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);
}
}