Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DFocusFinder.java523 Rect touchableBounds = mOtherRect; in findNearestTouchable() local
529 touchable.getDrawingRect(touchableBounds); in findNearestTouchable()
531 root.offsetRectBetweenParentAndChild(touchable, touchableBounds, true, true); in findNearestTouchable()
533 if (!isTouchCandidate(x, y, touchableBounds, direction)) { in findNearestTouchable()
541 distance = x - touchableBounds.right + 1; in findNearestTouchable()
544 distance = touchableBounds.left; in findNearestTouchable()
547 distance = y - touchableBounds.bottom + 1; in findNearestTouchable()
550 distance = touchableBounds.top; in findNearestTouchable()
557 closestBounds.contains(touchableBounds) || in findNearestTouchable()
558 (!touchableBounds.contains(closestBounds) && distance < minDistance)) { in findNearestTouchable()
[all …]