Searched defs:smoothScroller (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DGridLayoutManager.java2669 // If it is still in smoothScrolling, we should either update smoothScroller or initiate
2761 public void startSmoothScroll(RecyclerView.SmoothScroller smoothScroller) { argument
2763 super.startSmoothScroll(smoothScroller);
2764 if (smoothScroller.isRunning() && smoothScroller instanceof GridLinearSmoothScroller) {
2765 mCurrentSmoothScroller = (GridLinearSmoothScroller) smoothScroller;
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java4653 final SmoothScroller smoothScroller = mLayout.mSmoothScroller;
4682 if (smoothScroller != null && !smoothScroller.isPendingInitialRun()
4683 && smoothScroller.isRunning()) {
4686 smoothScroller.stop();
4687 } else if (smoothScroller.getTargetPosition() >= adapterSize) {
4688 smoothScroller.setTargetPosition(adapterSize - 1);
4689 smoothScroller.onAnimation(dx - overscrollX, dy - overscrollY);
4691 smoothScroller.onAnimation(dx - overscrollX, dy - overscrollY);
4750 if (smoothScroller !
7583 startSmoothScroll(SmoothScroller smoothScroller) argument
9280 onSmoothScrollerStopped(SmoothScroller smoothScroller) argument
[all...]
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java5002 final SmoothScroller smoothScroller = mLayout.mSmoothScroller;
5027 if (smoothScroller != null && !smoothScroller.isPendingInitialRun()
5028 && smoothScroller.isRunning()) {
5031 smoothScroller.stop();
5032 } else if (smoothScroller.getTargetPosition() >= adapterSize) {
5033 smoothScroller.setTargetPosition(adapterSize - 1);
5034 smoothScroller.onAnimation(dx - overscrollX, dy - overscrollY);
5036 smoothScroller.onAnimation(dx - overscrollX, dy - overscrollY);
5101 if (smoothScroller !
8152 startSmoothScroll(SmoothScroller smoothScroller) argument
10004 onSmoothScrollerStopped(SmoothScroller smoothScroller) argument
[all...]

Completed in 108 milliseconds