Searched defs:stopNestedScroll (Results 1 - 10 of 10) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/view/
H A DNestedScrollingChild2.java54 * {@link #stopNestedScroll(int)} to indicate the end of the nested scroll.</p>
79 * @see #stopNestedScroll(int)
93 void stopNestedScroll(@NestedScrollType int type); method in interface:NestedScrollingChild2
H A DNestedScrollingChild.java50 * while a nested scroll is in progress has the effect of {@link #stopNestedScroll() stopping}
83 * {@link #stopNestedScroll()} to indicate the end of the nested scroll.</p>
107 * @see #stopNestedScroll()
120 void stopNestedScroll(); method in interface:NestedScrollingChild
H A DNestedScrollingChildHelper.java71 ViewCompat.stopNestedScroll(mView);
174 public void stopNestedScroll() { method in class:NestedScrollingChildHelper
175 stopNestedScroll(TYPE_TOUCH);
185 public void stopNestedScroll(@NestedScrollType int type) { method in class:NestedScrollingChildHelper
366 ViewCompat.stopNestedScroll(mView);
379 ViewCompat.stopNestedScroll(mView);
H A DViewCompat.java2438 * {@link #stopNestedScroll(View) stopping} the nested scroll.</p>
2503 * <p>This version of the method just calls {@link #stopNestedScroll(View, int)} using the
2509 public static void stopNestedScroll(@NonNull View view) { method in class:ViewCompat
2511 view.stopNestedScroll();
2513 ((NestedScrollingChild) view).stopNestedScroll();
2607 * {@link #stopNestedScroll(View)} to indicate the end of the nested scroll.</p>
2632 * @see #stopNestedScroll(View)
2654 public static void stopNestedScroll(@NonNull View view, @NestedScrollType int type) { method in class:ViewCompat
2656 ((NestedScrollingChild2) view).stopNestedScroll(type);
2658 stopNestedScroll(vie
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DNestedScrollingChild.java46 * while a nested scroll is in progress has the effect of {@link #stopNestedScroll() stopping}
79 * {@link #stopNestedScroll()} to indicate the end of the nested scroll.</p>
103 * @see #stopNestedScroll()
116 void stopNestedScroll(); method in interface:NestedScrollingChild
/frameworks/support/compat/src/androidTest/java/androidx/core/widget/
H A DNestedScrollViewNestedScrollingParentTest.java681 public void stopNestedScroll(int type) { method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView
718 public void stopNestedScroll() { method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java225 public void stopNestedScroll(int type) { method in class:NestedScrollView
226 mChildHelper.stopNestedScroll(type);
265 public void stopNestedScroll() { method in class:NestedScrollView
266 stopNestedScroll(ViewCompat.TYPE_TOUCH);
314 stopNestedScroll(type);
783 stopNestedScroll(ViewCompat.TYPE_TOUCH);
1549 stopNestedScroll(ViewCompat.TYPE_NON_TOUCH);
1842 stopNestedScroll(ViewCompat.TYPE_TOUCH);
/frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/
H A DSwipeRefreshLayout.java827 stopNestedScroll();
867 public void stopNestedScroll() { method in class:SwipeRefreshLayout
868 mNestedScrollingChildHelper.stopNestedScroll();
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java3019 stopNestedScroll(TYPE_TOUCH);
3188 stopNestedScroll(TYPE_TOUCH);
5092 stopNestedScroll(TYPE_NON_TOUCH);
11239 public void stopNestedScroll() { method in class:RecyclerView
11240 getScrollingChildHelper().stopNestedScroll();
11244 public void stopNestedScroll(int type) { method in class:RecyclerView
11245 getScrollingChildHelper().stopNestedScroll(type);
/frameworks/base/core/java/android/view/
H A DView.java4730 * by {@link #stopNestedScroll()} at the same point where we clear
12498 stopNestedScroll();
12528 stopNestedScroll();
18198 stopNestedScroll();
24486 * while a nested scroll is in progress has the effect of {@link #stopNestedScroll() stopping}
24497 stopNestedScroll();
24529 * {@link #stopNestedScroll()} to indicate the end of the nested scroll.</p>
24552 * @see #stopNestedScroll()
24592 public void stopNestedScroll() { method in class:View
[all...]

Completed in 234 milliseconds