1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-15 08:29:24 +00:00

Added fail-safe

This commit is contained in:
M66B 2022-06-12 17:13:16 +02:00
parent 388af6e7c5
commit 5a8763a7dc

View file

@ -1527,17 +1527,22 @@ public class Helper {
}
static boolean isKeyboardVisible(final View view) {
if (view == null)
try {
if (view == null)
return false;
View root = view.getRootView();
if (root == null)
return false;
WindowInsetsCompat insets = ViewCompat.getRootWindowInsets(root);
if (insets == null)
return false;
boolean visible = insets.isVisible(WindowInsetsCompat.Type.ime());
Log.i("isKeyboardVisible=" + visible);
return visible;
} catch (Throwable ex) {
Log.e(ex);
return false;
View root = view.getRootView();
if (root == null)
return false;
WindowInsetsCompat insets = ViewCompat.getRootWindowInsets(root);
if (insets == null)
return false;
boolean visible = insets.isVisible(WindowInsetsCompat.Type.ime());
Log.i("isKeyboardVisible=" + visible);
return visible;
}
}
static String getViewName(View view) {