diff options
| author | 2018-04-03 11:39:20 -0700 | |
|---|---|---|
| committer | 2018-04-03 11:40:44 -0700 | |
| commit | 1317162eb4d4ca3ba2dc914ccccdcdff5bbf2e29 (patch) | |
| tree | 64f235b8b89c060212c3a595e99dd38a0fc8f167 | |
| parent | 80a2bba9a695f7ad058f17b7d39089a98d40f335 (diff) | |
Notify a11y when view attached to parent
Bug: 73493821
Test: Verifying that vibration settings UI works
properly.
Change-Id: Id3c9e87fdd0ad5c49d8bd6e86b2c15977c9b09ca
| -rw-r--r-- | core/java/android/view/ViewGroup.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/view/ViewGroup.java b/core/java/android/view/ViewGroup.java index 6002fe512a28..2ec42c0d0d76 100644 --- a/core/java/android/view/ViewGroup.java +++ b/core/java/android/view/ViewGroup.java @@ -5692,6 +5692,7 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager } dispatchVisibilityAggregated(isAttachedToWindow() && getWindowVisibility() == VISIBLE && isShown()); + notifySubtreeAccessibilityStateChangedIfNeeded(); } /** |