Home | History | Annotate | Download | only in sgv

Lines Matching refs:fling

73      * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
110 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
204 * Returns where the scroll will end. Valid only for "fling" scrolls.
213 * Returns where the scroll will end. Valid only for "fling" scrolls.
405 public void fling(int startX, int startY, int velocityX, int velocityY,
407 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0);
411 * Start scrolling based on a fling gesture. The distance traveled will
412 * depend on the initial velocity of the fling.
416 * @param velocityX Initial velocity of the fling (X) measured in pixels per
418 * @param velocityY Initial velocity of the fling (Y) measured in pixels per
437 public void fling(int startX, int startY, int velocityX, int velocityY,
439 // Continue a scroll or fling in progress
451 mScrollerX.fling(startX, velocityX, minX, maxX, overX);
452 mScrollerY.fling(startY, velocityY, minY, maxY, overY);
459 * fling functions. However there are cases where this cannot be known
476 * fling functions. However there are cases where this cannot be known
492 * {@link #fling(int, int, int, int, int, int, int, int, int, int)} method.
581 // Fling friction
700 // Not reset since WebView relies on this value for fast fling.
701 // TODO: restore when WebView uses the fast fling implemented in this class.
750 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 // edge is increasing. This ensures that startAfterEdge will not start a new fling.