Searched defs:startScroll (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/v4/java/android/support/v4/widget/
H A DScrollerCompat.java128 public void startScroll(int startX, int startY, int dx, int dy) { method in class:ScrollerCompat
129 mScroller.startScroll(startX, startY, dx, dy);
145 public void startScroll(int startX, int startY, int dx, int dy, int duration) { method in class:ScrollerCompat
146 mScroller.startScroll(startX, startY, dx, dy, duration);
/frameworks/base/core/java/android/widget/
H A DScroller.java353 public void startScroll(int startX, int startY, int dx, int dy) { method in class:Scroller
354 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
370 public void startScroll(int startX, int startY, int dx, int dy, int duration) { method in class:Scroller
H A DOverScroller.java242 * the duration of an existing scroll, use startScroll
261 * the duration of an existing scroll, use startScroll
279 * the duration of an existing scroll, use startScroll
357 public void startScroll(int startX, int startY, int dx, int dy) { method in class:OverScroller
358 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
374 public void startScroll(int startX, int startY, int dx, int dy, int duration) { method in class:OverScroller
376 mScrollerX.startScroll(startX, dx, duration);
377 mScrollerY.startScroll(startY, dy, duration);
491 * {@link #startScroll(int, int, int, int)} as the interpolation currently in progress
680 void startScroll(in method in class:OverScroller.SplineOverScroller
[all...]
H A DAbsListView.java4000 void startScroll(int distance, int duration, boolean linear) { method in class:AbsListView.FlingRunnable
4004 mScroller.startScroll(0, initialY, 0, distance, duration);
4717 mFlingRunnable.startScroll(distance, duration, linear);

Completed in 35 milliseconds