diff options
| -rw-r--r-- | core/java/android/view/View.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index 71b60844b17d..6b16d42ac7ef 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -20700,7 +20700,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, if (canTakeFocus()) { // We have a robust focus, so parents should no longer be wanting focus. clearParentsWantFocus(); - } else if (!getViewRootImpl().isInLayout()) { + } else if (getViewRootImpl() == null || !getViewRootImpl().isInLayout()) { // This is a weird case. Most-likely the user, rather than ViewRootImpl, called // layout. In this case, there's no guarantee that parent layouts will be evaluated // and thus the safest action is to clear focus here. |