mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-27 19:35:10 +01:00
Added fail-safe
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user