HomeSort by relevance Sort by last modified time
    Searched defs:startScroll (Results 1 - 25 of 75) sorted by null

1 2 3

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ScrollerHelper.java 66 mScroller.startScroll(
85 public int startScroll(int distance, int min, int max) {
91 mScroller.startScroll(
  /frameworks/support/compat/src/main/java/androidx/core/widget/
ScrollerCompat.java 162 public void startScroll(int startX, int startY, int dx, int dy) {
163 mScroller.startScroll(startX, startY, dx, dy);
179 * @deprecated Use {@link OverScroller#startScroll(int, int, int, int, int)} directly.
182 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
183 mScroller.startScroll(startX, startY, dx, dy, duration);
323 * {@link #startScroll(int, int, int, int)} as the interpolation currently in progress
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowScroller.java 55 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
ShadowOverScroller.java 58 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
  /frameworks/base/core/java/android/widget/
OverScroller.java 249 * the duration of an existing scroll, use startScroll
268 * the duration of an existing scroll, use startScroll
286 * the duration of an existing scroll, use startScroll
357 public void startScroll(int startX, int startY, int dx, int dy) {
358 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
374 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
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(int start, int distance, int duration)
    [all...]
Scroller.java 44 * mScroller.startScroll(0, 0, 100, 0);
368 public void startScroll(int startX, int startY, int dx, int dy) {
369 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
386 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
HorizontalScrollView.java     [all...]
ScrollView.java     [all...]
AbsListView.java     [all...]
TextView.java     [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 241 * the duration of an existing scroll, use startScroll
260 * the duration of an existing scroll, use startScroll
278 * the duration of an existing scroll, use startScroll
356 public void startScroll(int startX, int startY, int dx, int dy) {
357 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
373 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
375 mScrollerX.startScroll(startX, dx, duration);
376 mScrollerY.startScroll(startY, dy, duration);
490 * {@link #startScroll(int, int, int, int)} as the interpolation currently in progress
682 void startScroll(int start, int distance, int duration)
    [all...]
Scroller.java 316 public void startScroll(int startX, int startY, int dx, int dy) {
317 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
333 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java 352 public void startScroll(int startX, int startY, int dx, int dy) {
353 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
370 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollController.java 782 final public void startScroll(int dx, int dy, boolean easeFling, int duration, boolean page) {
823 scroller.startScroll(basex, basey, dx, dy, duration);
848 startScroll(dx, dy, easeFling, duration, page);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ViewPager.java 802 mScroller.startScroll(sx, sy, dx, dy, duration);
    [all...]
  /frameworks/support/customview/src/main/java/androidx/customview/widget/
ViewDragHelper.java 610 mScroller.startScroll(startLeft, startTop, dx, dy, duration);
    [all...]
  /frameworks/support/viewpager/src/main/java/androidx/viewpager/widget/
ViewPager.java     [all...]
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 436 mScroller.startScroll(mScrollX, mScrollY, 0,
441 mScroller.startScroll(mScrollX, mScrollY, 0, r.top - mScrollY, 200);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java     [all...]
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/13.0.0/
support-v4-13.0.0.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/18.0.0/
support-v4-18.0.0.jar 
  /developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar 
  /developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/19.0.0/
support-v4-19.0.0.jar 

Completed in 174 milliseconds

1 2 3