Lines Matching refs:target

423      * true, this ViewParent will become the target view's nested scrolling parent for the duration
428 * @param child Direct child of this ViewParent containing target
429 * @param target View that initiated the nested scroll
434 public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes);
445 * @param child Direct child of this ViewParent containing target
446 * @param target View that initiated the nested scroll
452 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes);
463 * @param target View that initiated the nested scroll
465 public void onStopNestedScroll(View target);
482 * @param target The descendent view controlling the nested scroll
483 * @param dxConsumed Horizontal scroll distance in pixels already consumed by target
484 * @param dyConsumed Vertical scroll distance in pixels already consumed by target
485 * @param dxUnconsumed Horizontal scroll distance in pixels not consumed by target
486 * @param dyUnconsumed Vertical scroll distance in pixels not consumed by target
488 public void onNestedScroll(View target, int dxConsumed, int dyConsumed,
492 * React to a nested scroll in progress before the target view consumes a portion of the scroll.
506 * @param target View that initiated the nested scroll
511 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed);
526 * @param target View that initiated the nested scroll
532 public boolean onNestedFling(View target, float velocityX, float velocityY, boolean consumed);
535 * React to a nested fling before the target view consumes it.
549 * @param target View that initiated the nested scroll
552 * @return true if this parent consumed the fling ahead of the target view
554 public boolean onNestedPreFling(View target, float velocityX, float velocityY);
557 * React to an accessibility action delegated by a target descendant view before the target
560 * <p>This method may be called by a target descendant view if the target wishes to give
567 * @param target The target view dispatching this action
573 public boolean onNestedPrePerformAccessibilityAction(View target, int action, Bundle arguments);