Lines Matching refs:target

76  * larger of either this value or the relative target value. Default value is
174 /** Whether to send a cancel motion event to the target view. */
198 * Creates a new helper for scrolling the specified target view.
201 * should be set as a touch listener on the target view.
206 * @param target The view to automatically scroll.
208 public AutoScrollHelper(View target) {
209 mTarget = target;
251 * By default, exclusive handling is disabled and the target view receives
258 * false to allow the target view to receive all touch events.
317 * Sets the target scrolling velocity relative to the host view's
323 * @param horizontal The target horizontal velocity as a fraction of the
326 * @param vertical The target vertical velocity as a fraction of the host
417 * to reach target velocity for the current touch position.
488 * @return whether the target is able to scroll in the requested direction
562 * Override this method to scroll the target view by the specified number of
571 * Override this method to return whether the target view can be scrolled
576 * @return true if the target view is able to horizontally scroll in the
582 * Override this method to return whether the target view can be scrolled
587 * @return true if the target view is able to vertically scroll in the
672 * Sends a {@link MotionEvent#ACTION_CANCEL} event to the target view,
832 * Sets the target velocity for this scroller.
834 * @param x The target X velocity in pixels per millisecond.
835 * @param y The target Y velocity in pixels per millisecond.
874 public AbsListViewAutoScroller(AbsListView target) {
875 super(target);
877 mTarget = target;
893 final AbsListView target = mTarget;
894 final int itemCount = target.getCount();
899 final int childCount = target.getChildCount();
900 final int firstPosition = target.getFirstVisiblePosition();
906 final View lastView = target.getChildAt(childCount - 1);
907 if (lastView.getBottom() <= target.getHeight()) {
914 final View firstView = target.getChildAt(0);