Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/NavigationBarInflaterView.java +7 −3 Original line number Original line Diff line number Diff line Loading @@ -269,13 +269,17 @@ public class NavigationBarInflaterView extends FrameLayout parent.addView(v); parent.addView(v); addToDispatchers(v); addToDispatchers(v); View lastView = landscape ? mLastLandscape : mLastPortrait; View lastView = landscape ? mLastLandscape : mLastPortrait; View accessibilityView = v; if (v instanceof ReverseFrameLayout) { accessibilityView = ((ReverseFrameLayout) v).getChildAt(0); } if (lastView != null) { if (lastView != null) { v.setAccessibilityTraversalAfter(lastView.getId()); accessibilityView.setAccessibilityTraversalAfter(lastView.getId()); } } if (landscape) { if (landscape) { mLastLandscape = v; mLastLandscape = accessibilityView; } else { } else { mLastPortrait = v; mLastPortrait = accessibilityView; } } return v; return v; } } Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/NavigationBarInflaterView.java +7 −3 Original line number Original line Diff line number Diff line Loading @@ -269,13 +269,17 @@ public class NavigationBarInflaterView extends FrameLayout parent.addView(v); parent.addView(v); addToDispatchers(v); addToDispatchers(v); View lastView = landscape ? mLastLandscape : mLastPortrait; View lastView = landscape ? mLastLandscape : mLastPortrait; View accessibilityView = v; if (v instanceof ReverseFrameLayout) { accessibilityView = ((ReverseFrameLayout) v).getChildAt(0); } if (lastView != null) { if (lastView != null) { v.setAccessibilityTraversalAfter(lastView.getId()); accessibilityView.setAccessibilityTraversalAfter(lastView.getId()); } } if (landscape) { if (landscape) { mLastLandscape = v; mLastLandscape = accessibilityView; } else { } else { mLastPortrait = v; mLastPortrait = accessibilityView; } } return v; return v; } } Loading