mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-14 13:03:13 +02:00
@@ -2111,12 +2111,13 @@ public class Helper {
|
||||
}
|
||||
|
||||
static void hideKeyboard(final View view) {
|
||||
try {
|
||||
Log.i("hideKeyboard view=" + view);
|
||||
new SoftwareKeyboardControllerCompat(view).hide();
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
}
|
||||
view.post(new RunnableEx("hideKeyboard") {
|
||||
@Override
|
||||
protected void delegate() {
|
||||
Log.i("hideKeyboard view=" + view);
|
||||
new SoftwareKeyboardControllerCompat(view).hide();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
static boolean isKeyboardVisible(final View view) {
|
||||
|
||||
Reference in New Issue
Block a user