HomeSort by relevance Sort by last modified time
    Searched refs:nextFocused (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java 339 View nextFocused = FocusFinder.getInstance().findNextFocus(this,
341 return nextFocused != null && nextFocused != this &&
342 nextFocused.requestFocus(View.FOCUS_RIGHT);
820 View nextFocused = FocusFinder.getInstance().findNextFocus(this, currentFocused, direction);
824 if (nextFocused != null && isWithinDeltaOfScreen(nextFocused, maxJump)) {
825 nextFocused.getDrawingRect(mTempRect);
826 offsetDescendantRectToMyCoords(nextFocused, mTempRect);
829 nextFocused.requestFocus(direction)
    [all...]
ScrollView.java 336 View nextFocused = FocusFinder.getInstance().findNextFocus(this,
338 return nextFocused != null
339 && nextFocused != this
340 && nextFocused.requestFocus(View.FOCUS_DOWN);
820 View nextFocused = FocusFinder.getInstance().findNextFocus(this, currentFocused, direction);
824 if (nextFocused != null && isWithinDeltaOfScreen(nextFocused, maxJump, getHeight())) {
825 nextFocused.getDrawingRect(mTempRect);
826 offsetDescendantRectToMyCoords(nextFocused, mTempRect);
829 nextFocused.requestFocus(direction)
    [all...]

Completed in 53 milliseconds