Home | History | Annotate | Download | only in common

Lines Matching refs:fling

69      * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
108 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
202 * Returns where the scroll will end. Valid only for "fling" scrolls.
211 * Returns where the scroll will end. Valid only for "fling" scrolls.
403 public void fling(int startX, int startY, int velocityX, int velocityY,
405 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0);
409 * Start scrolling based on a fling gesture. The distance traveled will
410 * depend on the initial velocity of the fling.
414 * @param velocityX Initial velocity of the fling (X) measured in pixels per
416 * @param velocityY Initial velocity of the fling (Y) measured in pixels per
435 public void fling(int startX, int startY, int velocityX, int velocityY,
437 // Continue a scroll or fling in progress
449 mScrollerX.fling(startX, velocityX, minX, maxX, overX);
450 mScrollerY.fling(startY, velocityY, minY, maxY, overY);
457 * fling functions. However there are cases where this cannot be known
474 * fling functions. However there are cases where this cannot be known
490 * {@link #fling(int, int, int, int, int, int, int, int, int, int)} method.
579 // Fling friction
701 // Not reset since WebView relies on this value for fast fling.
702 // TODO: restore when WebView uses the fast fling implemented in this class.
751 void fling(int start, int velocity, int min, int max, int over) {
838 fling(start, velocity, positive ? min : start, positive ? start : max, mOver);
850 // We were in fling/scroll mode before: current velocity is such that distance to
851 fling.