Home
last modified time | relevance | path

Searched refs:nextFocused (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
DHorizontalScrollView.java477 View nextFocused = FocusFinder.getInstance().findNextFocus(this, in executeKeyEvent() local
479 return nextFocused != null && nextFocused != this && in executeKeyEvent()
480 nextFocused.requestFocus(View.FOCUS_RIGHT); in executeKeyEvent()
1205 View nextFocused = FocusFinder.getInstance().findNextFocus(this, currentFocused, direction); in arrowScroll() local
1209 if (nextFocused != null && isWithinDeltaOfScreen(nextFocused, maxJump)) { in arrowScroll()
1210 nextFocused.getDrawingRect(mTempRect); in arrowScroll()
1211 offsetDescendantRectToMyCoords(nextFocused, mTempRect); in arrowScroll()
1214 nextFocused.requestFocus(direction); in arrowScroll()
DScrollView.java509 View nextFocused = FocusFinder.getInstance().findNextFocus(this, in executeKeyEvent() local
511 return nextFocused != null in executeKeyEvent()
512 && nextFocused != this in executeKeyEvent()
513 && nextFocused.requestFocus(View.FOCUS_DOWN); in executeKeyEvent()
1228 View nextFocused = FocusFinder.getInstance().findNextFocus(this, currentFocused, direction); in arrowScroll() local
1232 if (nextFocused != null && isWithinDeltaOfScreen(nextFocused, maxJump, getHeight())) { in arrowScroll()
1233 nextFocused.getDrawingRect(mTempRect); in arrowScroll()
1234 offsetDescendantRectToMyCoords(nextFocused, mTempRect); in arrowScroll()
1237 nextFocused.requestFocus(direction); in arrowScroll()
/frameworks/base/core/java/com/android/internal/widget/
DViewPager.java2500 View nextFocused = FocusFinder.getInstance().findNextFocus(this, currentFocused,
2502 if (nextFocused != null && nextFocused != currentFocused) {
2506 final int nextLeft = getChildRectInPagerCoordinates(mTempRect, nextFocused).left;
2511 handled = nextFocused.requestFocus();
2516 final int nextLeft = getChildRectInPagerCoordinates(mTempRect, nextFocused).left;
2521 handled = nextFocused.requestFocus();