Post show/hide keyboard

This commit is contained in:
M66B 2024-05-23 18:06:44 +02:00
parent 1a00102301
commit 7f96e25ff8
1 changed files with 14 additions and 12 deletions

View File

@ -2090,21 +2090,23 @@ public class Helper {
} }
static void showKeyboard(final View view) { static void showKeyboard(final View view) {
try { view.post(new RunnableEx("showKeyboard") {
Log.i("showKeyboard view=" + view); @Override
new SoftwareKeyboardControllerCompat(view).show(); protected void delegate() {
} catch (Throwable ex) { Log.i("showKeyboard view=" + view);
Log.e(ex); new SoftwareKeyboardControllerCompat(view).show();
} }
});
} }
static void hideKeyboard(final View view) { static void hideKeyboard(final View view) {
try { view.post(new RunnableEx("hideKeyboard") {
Log.i("hideKeyboard view=" + view); @Override
new SoftwareKeyboardControllerCompat(view).hide(); protected void delegate() {
} catch (Throwable ex) { Log.i("hideKeyboard view=" + view);
Log.e(ex); new SoftwareKeyboardControllerCompat(view).hide();
} }
});
} }
static boolean isKeyboardVisible(final View view) { static boolean isKeyboardVisible(final View view) {