Searched defs:fling (Results 1 - 9 of 9) sorted by relevance

/frameworks/support/v4/java/android/support/v4/widget/
H A DScrollerCompat.java26 * current device's preferred scroll physics and fling behavior. It offers a subset of
150 * Start scrolling based on a fling gesture. The distance travelled will
151 * depend on the initial velocity of the fling.
155 * @param velocityX Initial velocity of the fling (X) measured in pixels per
157 * @param velocityY Initial velocity of the fling (Y) measured in pixels per
168 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:ScrollerCompat
170 mScroller.fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java61 public void fling(float vel, boolean always) { method in class:NotificationPanelView
65 "fling " + ((vel > 0) ? "open" : "closed"),
68 super.fling(vel, always);
H A DSettingsPanelView.java103 public void fling(float vel, boolean always) { method in class:SettingsPanelView
107 "fling " + ((vel > 0) ? "open" : "closed"),
110 super.fling(vel, always);
H A DPanelView.java352 fling(vel, true);
361 public void fling(float vel, boolean always) { method in class:PanelView
362 if (DEBUG) LOG("fling: vel=%.3f, this=%s", vel, this);
494 fling(-mSelfCollapseVelocityPx, /*always=*/ true);
502 fling(mSelfExpandVelocityPx, /*always=*/ true);
/frameworks/base/core/java/android/widget/
H A DScroller.java256 * Returns where the scroll will end. Valid only for "fling" scrolls.
265 * Returns where the scroll will end. Valid only for "fling" scrolls.
385 * Start scrolling based on a fling gesture. The distance travelled will
386 * depend on the initial velocity of the fling.
390 * @param velocityX Initial velocity of the fling (X) measured in pixels per
392 * @param velocityY Initial velocity of the fling (Y) measured in pixels per
403 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:Scroller
405 // Continue a scroll or fling in progress
H A DHorizontalScrollView.java554 * If being flinged and user touches, stop the fling. isFinished
633 fling(-initialVelocity);
1500 public void fling(int velocityX) { method in class:HorizontalScrollView
1505 mScroller.fling(mScrollX, mScrollY, velocityX, 0, 0,
H A DOverScroller.java69 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
106 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
200 * Returns where the scroll will end. Valid only for "fling" scrolls.
209 * Returns where the scroll will end. Valid only for "fling" scrolls.
401 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:OverScroller
403 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0);
407 * Start scrolling based on a fling gesture. The distance traveled will
408 * depend on the initial velocity of the fling.
412 * @param velocityX Initial velocity of the fling (X) measured in pixels per
414 * @param velocityY Initial velocity of the fling (
433 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:OverScroller
746 void fling(int start, int velocity, int min, int max, int over) { method in class:OverScroller.SplineOverScroller
[all...]
H A DScrollView.java586 * If being flinged and user touches, stop the fling. isFinished
669 fling(-initialVelocity);
1509 public void fling(int velocityY) { method in class:ScrollView
1514 mScroller.fling(mScrollX, mScrollY, 0, velocityY, 0, 0, 0,
1518 mFlingStrictSpan = StrictMode.enterCriticalSpan("ScrollView-fling");
H A DNumberPicker.java108 * The coefficient by which to adjust (divide) the max fling velocity.
503 * The user had previously been scrolling using touch and performed a fling.
707 // create the fling and adjust scrollers
884 fling(initialVelocity);
1645 private void fling(int velocityY) { method in class:NumberPicker
1649 mFlingScroller.fling(0, 0, 0, velocityY, 0, 0, 0, Integer.MAX_VALUE);
1651 mFlingScroller.fling(0, Integer.MAX_VALUE, 0, velocityY, 0, 0, 0, Integer.MAX_VALUE);

Completed in 763 milliseconds