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 39f1170a474b..147120ef5a97 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -6844,7 +6844,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, if (isAutofillable() && isAttachedToWindow()) { AutofillManager afm = getAutofillManager(); if (afm != null) { - if (enter && hasWindowFocus() && isFocused()) { + if (enter && hasWindowFocus() && isFocused() && isVisibleToUser()) { afm.notifyViewEntered(this); } else if (!hasWindowFocus() || !isFocused()) { afm.notifyViewExited(this); |