Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DScrollView.java387 View nextFocused = FocusFinder.getInstance().findNextFocus(this, in executeKeyEvent() local
389 return nextFocused != null in executeKeyEvent()
390 && nextFocused != this in executeKeyEvent()
391 && nextFocused.requestFocus(View.FOCUS_DOWN); in executeKeyEvent()
1080 View nextFocused = FocusFinder.getInstance().findNextFocus(this, currentFocused, direction); in arrowScroll() local
1084 if (nextFocused != null && isWithinDeltaOfScreen(nextFocused, maxJump, getHeight())) { in arrowScroll()
1085 nextFocused.getDrawingRect(mTempRect); in arrowScroll()
1086 offsetDescendantRectToMyCoords(nextFocused, mTempRect); in arrowScroll()
1089 nextFocused.requestFocus(direction); in arrowScroll()
DHorizontalScrollView.java361 View nextFocused = FocusFinder.getInstance().findNextFocus(this, in executeKeyEvent() local
363 return nextFocused != null && nextFocused != this && in executeKeyEvent()
364 nextFocused.requestFocus(View.FOCUS_RIGHT); in executeKeyEvent()
1069 View nextFocused = FocusFinder.getInstance().findNextFocus(this, currentFocused, direction); in arrowScroll() local
1073 if (nextFocused != null && isWithinDeltaOfScreen(nextFocused, maxJump)) { in arrowScroll()
1074 nextFocused.getDrawingRect(mTempRect); in arrowScroll()
1075 offsetDescendantRectToMyCoords(nextFocused, mTempRect); in arrowScroll()
1078 nextFocused.requestFocus(direction); in arrowScroll()
/frameworks/support/v4/java/android/support/v4/view/
DViewPager.java2547 View nextFocused = FocusFinder.getInstance().findNextFocus(this, currentFocused,
2549 if (nextFocused != null && nextFocused != currentFocused) {
2553 final int nextLeft = getChildRectInPagerCoordinates(mTempRect, nextFocused).left;
2558 handled = nextFocused.requestFocus();
2563 final int nextLeft = getChildRectInPagerCoordinates(mTempRect, nextFocused).left;
2568 handled = nextFocused.requestFocus();