Searched refs:nextFocused (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | HorizontalScrollView.java | 484 View nextFocused = FocusFinder.getInstance().findNextFocus(this, in executeKeyEvent() local 486 return nextFocused != null && nextFocused != this && in executeKeyEvent() 487 nextFocused.requestFocus(View.FOCUS_RIGHT); in executeKeyEvent() 1229 View nextFocused = FocusFinder.getInstance().findNextFocus(this, currentFocused, direction); in arrowScroll() local 1233 if (nextFocused != null && isWithinDeltaOfScreen(nextFocused, maxJump)) { in arrowScroll() 1234 nextFocused.getDrawingRect(mTempRect); in arrowScroll() 1235 offsetDescendantRectToMyCoords(nextFocused, mTempRect); in arrowScroll() 1238 nextFocused.requestFocus(direction); in arrowScroll()
|
D | ScrollView.java | 515 View nextFocused = FocusFinder.getInstance().findNextFocus(this, in executeKeyEvent() local 517 return nextFocused != null in executeKeyEvent() 518 && nextFocused != this in executeKeyEvent() 519 && nextFocused.requestFocus(View.FOCUS_DOWN); in executeKeyEvent() 1255 View nextFocused = FocusFinder.getInstance().findNextFocus(this, currentFocused, direction); in arrowScroll() local 1259 if (nextFocused != null && isWithinDeltaOfScreen(nextFocused, maxJump, getHeight())) { in arrowScroll() 1260 nextFocused.getDrawingRect(mTempRect); in arrowScroll() 1261 offsetDescendantRectToMyCoords(nextFocused, mTempRect); in arrowScroll() 1264 nextFocused.requestFocus(direction); in arrowScroll()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ViewPager.java | 2544 View nextFocused = FocusFinder.getInstance().findNextFocus(this, currentFocused, 2546 if (nextFocused != null && nextFocused != currentFocused) { 2550 final int nextLeft = getChildRectInPagerCoordinates(mTempRect, nextFocused).left; 2555 handled = nextFocused.requestFocus(); 2560 final int nextLeft = getChildRectInPagerCoordinates(mTempRect, nextFocused).left; 2565 handled = nextFocused.requestFocus();
|