mirror of https://github.com/M66B/FairEmail.git
Immediately hide keyboard
This commit is contained in:
parent
c320c2f716
commit
13396cb100
|
@ -2111,13 +2111,12 @@ public class Helper {
|
|||
}
|
||||
|
||||
static void hideKeyboard(final View view) {
|
||||
view.post(new RunnableEx("hideKeyboard") {
|
||||
@Override
|
||||
protected void delegate() {
|
||||
Log.i("hideKeyboard view=" + view);
|
||||
new SoftwareKeyboardControllerCompat(view).hide();
|
||||
}
|
||||
});
|
||||
try {
|
||||
Log.i("hideKeyboard view=" + view);
|
||||
new SoftwareKeyboardControllerCompat(view).hide();
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
}
|
||||
}
|
||||
|
||||
static boolean isKeyboardVisible(final View view) {
|
||||
|
|
Loading…
Reference in New Issue