Loading core/java/android/view/View.java +2 −2 Original line number Original line Diff line number Diff line Loading @@ -6351,7 +6351,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } } View next = rootView.findViewInsideOutShouldExist(this, View next = rootView.findViewInsideOutShouldExist(this, mAccessibilityTraversalBeforeId); mAccessibilityTraversalBeforeId); if (next != null) { if (next != null && next.includeForAccessibility()) { info.setTraversalBefore(next); info.setTraversalBefore(next); } } } } Loading @@ -6363,7 +6363,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } } View next = rootView.findViewInsideOutShouldExist(this, View next = rootView.findViewInsideOutShouldExist(this, mAccessibilityTraversalAfterId); mAccessibilityTraversalAfterId); if (next != null) { if (next != null && next.includeForAccessibility()) { info.setTraversalAfter(next); info.setTraversalAfter(next); } } } } Loading Loading
core/java/android/view/View.java +2 −2 Original line number Original line Diff line number Diff line Loading @@ -6351,7 +6351,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } } View next = rootView.findViewInsideOutShouldExist(this, View next = rootView.findViewInsideOutShouldExist(this, mAccessibilityTraversalBeforeId); mAccessibilityTraversalBeforeId); if (next != null) { if (next != null && next.includeForAccessibility()) { info.setTraversalBefore(next); info.setTraversalBefore(next); } } } } Loading @@ -6363,7 +6363,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } } View next = rootView.findViewInsideOutShouldExist(this, View next = rootView.findViewInsideOutShouldExist(this, mAccessibilityTraversalAfterId); mAccessibilityTraversalAfterId); if (next != null) { if (next != null && next.includeForAccessibility()) { info.setTraversalAfter(next); info.setTraversalAfter(next); } } } } Loading