Fix keyboard showing after the search box acquiring focus (#8227)
* Fix keyboard showing after the search box acquiring focus * Fix the underlying problem as described in the issue #7647
This commit is contained in:
parent
76d7e06c97
commit
836ee6079e
1 changed files with 13 additions and 1 deletions
|
|
@ -24,7 +24,19 @@ public final class KeyboardUtil {
|
||||||
if (editText.requestFocus()) {
|
if (editText.requestFocus()) {
|
||||||
final InputMethodManager imm = ContextCompat.getSystemService(activity,
|
final InputMethodManager imm = ContextCompat.getSystemService(activity,
|
||||||
InputMethodManager.class);
|
InputMethodManager.class);
|
||||||
imm.showSoftInput(editText, InputMethodManager.SHOW_FORCED);
|
if (!imm.showSoftInput(editText, InputMethodManager.SHOW_FORCED)) {
|
||||||
|
/*
|
||||||
|
* Sometimes the keyboard can't be shown because Android's ImeFocusController is in
|
||||||
|
* a incorrect state e.g. when animations are disabled or the unfocus event of the
|
||||||
|
* previous view arrives in the wrong moment (see #7647 for details).
|
||||||
|
* The invalid state can be fixed by to re-focusing the editText.
|
||||||
|
*/
|
||||||
|
editText.clearFocus();
|
||||||
|
editText.requestFocus();
|
||||||
|
|
||||||
|
// Try again
|
||||||
|
imm.showSoftInput(editText, InputMethodManager.SHOW_FORCED);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue