Searched defs:scrollTo (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/text/method/
H A DTouch.java37 public static void scrollTo(TextView widget, Layout layout, int x, int y) { method in class:Touch
81 widget.scrollTo(x, y);
176 scrollTo(widget, layout, nx, ny);
/frameworks/base/core/java/android/widget/
H A DFastScroller.java145 /** Whether we're waiting for completion of scrollTo(). */
939 private void scrollTo(float position) { method in class:FastScroller
1375 scrollTo(pos);
1418 scrollTo(pos);
1451 // If the previous scrollTo is still pending
1453 scrollTo(pos);
H A DHorizontalScrollView.java728 super.scrollTo(newScrollX, mScrollY);
759 super.scrollTo(scrollX, scrollY);
1182 * Like {@link #scrollTo}, but scroll smoothly instead of immediately.
1253 // re-show the scrollbars at this point, which scrollTo will do,
1254 // so we replicate most of scrollTo here.
1515 scrollTo(mScrollX, mScrollY);
1587 public void scrollTo(int x, int y) { method in class:HorizontalScrollView
1588 // we rely on the fact the View.scrollBy calls scrollTo.
1594 super.scrollTo(x, y);
H A DScrollView.java780 super.scrollTo(mScrollX, newScrollY);
806 super.scrollTo(scrollX, scrollY);
1196 * Like {@link #scrollTo}, but scroll smoothly instead of immediately.
1267 // re-show the scrollbars at this point, which scrollTo will do,
1268 // so we replicate most of scrollTo here.
1529 scrollTo(mScrollX, mScrollY);
1619 public void scrollTo(int x, int y) { method in class:ScrollView
1620 // we rely on the fact the View.scrollBy calls scrollTo.
1626 super.scrollTo(x, y);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DPagedView.java441 scrollTo(newX, 0);
551 scrollTo(mUnboundedScrollX + x, getScrollY() + y);
555 public void scrollTo(int x, int y) { method in class:PagedView
559 super.scrollTo(0, y);
564 super.scrollTo(mMaxScrollX, y);
570 super.scrollTo(x, y);
592 scrollTo(mScroller.getCurrX(), mScroller.getCurrY());
1342 super.scrollTo(0, getScrollY());
1345 super.scrollTo(mMaxScrollX, getScrollY());
1366 super.scrollTo(
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java999 public void scrollTo(int x, int y) { method in class:RecyclerView
/frameworks/base/core/java/android/view/
H A DView.java554 * {@link #scrollBy(int, int)}, {@link #scrollTo(int, int)}, and
4174 scrollTo(x, y);
9851 * {@link #scrollBy(int, int)} or {@link #scrollTo(int, int)} having been
9957 scrollTo(value, mScrollY);
9967 scrollTo(mScrollX, value);
11498 public void scrollTo(int x, int y) { method in class:View
11520 scrollTo(mScrollX + x, mScrollY + y);
11540 * and {@link #scrollTo(int, int)}.</p>
11546 * @see #scrollTo(int, int)
11598 * @see #scrollTo(in
[all...]

Completed in 650 milliseconds