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

/frameworks/support/compat/java/android/support/v4/view/
H A DNestedScrollingChild2.java53 * {@link #stopNestedScroll(int)} to indicate the end of the nested scroll.</p>
78 * @see #stopNestedScroll(int)
92 void stopNestedScroll(@NestedScrollType int type); method in interface:NestedScrollingChild2
H A DNestedScrollingChild.java49 * while a nested scroll is in progress has the effect of {@link #stopNestedScroll() stopping}
82 * {@link #stopNestedScroll()} to indicate the end of the nested scroll.</p>
106 * @see #stopNestedScroll()
119 void stopNestedScroll(); method in interface:NestedScrollingChild
H A DViewCompat.java836 public void stopNestedScroll(View view) { method in class:ViewCompat.ViewCompatBaseImpl
838 ((NestedScrollingChild) view).stopNestedScroll();
1307 public void stopNestedScroll(View view) { method in class:ViewCompat.ViewCompatApi21Impl
1308 view.stopNestedScroll();
3239 * {@link #stopNestedScroll(View) stopping} the nested scroll.</p>
3283 * <p>This version of the method just calls {@link #stopNestedScroll(View, int)} using the
3288 public static void stopNestedScroll(@NonNull View view) { method in class:ViewCompat
3289 IMPL.stopNestedScroll(view);
3359 * {@link #stopNestedScroll(View)} to indicate the end of the nested scroll.</p>
3384 * @see #stopNestedScroll(Vie
3406 public static void stopNestedScroll(@NonNull View view, @NestedScrollType int type) { method in class:ViewCompat
[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/core-ui/java/android/support/v4/view/
H A DNestedScrollingChildHelper.java70 ViewCompat.stopNestedScroll(mView);
173 public void stopNestedScroll() { method in class:NestedScrollingChildHelper
174 stopNestedScroll(TYPE_TOUCH);
184 public void stopNestedScroll(@NestedScrollType int type) { method in class:NestedScrollingChildHelper
365 ViewCompat.stopNestedScroll(mView);
378 ViewCompat.stopNestedScroll(mView);
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java235 public void stopNestedScroll() { method in class:NestedScrollView
236 mChildHelper.stopNestedScroll();
240 public void stopNestedScroll(int type) { method in class:NestedScrollView
241 mChildHelper.stopNestedScroll(type);
305 stopNestedScroll();
735 stopNestedScroll(ViewCompat.TYPE_TOUCH);
1493 stopNestedScroll(ViewCompat.TYPE_NON_TOUCH);
1774 stopNestedScroll(ViewCompat.TYPE_TOUCH);
H A DSwipeRefreshLayout.java812 stopNestedScroll();
852 public void stopNestedScroll() { method in class:SwipeRefreshLayout
853 mNestedScrollingChildHelper.stopNestedScroll();
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2874 stopNestedScroll(TYPE_TOUCH);
3043 stopNestedScroll(TYPE_TOUCH);
4938 stopNestedScroll(TYPE_NON_TOUCH);
10921 public void stopNestedScroll() { method in class:RecyclerView
10922 getScrollingChildHelper().stopNestedScroll();
10926 public void stopNestedScroll(int type) { method in class:RecyclerView
10927 getScrollingChildHelper().stopNestedScroll(type);
/frameworks/base/core/java/android/view/
H A DView.java4497 * by {@link #stopNestedScroll()} at the same point where we clear
11761 stopNestedScroll();
11791 stopNestedScroll();
17306 stopNestedScroll();
23371 * while a nested scroll is in progress has the effect of {@link #stopNestedScroll() stopping}
23382 stopNestedScroll();
23414 * {@link #stopNestedScroll()} to indicate the end of the nested scroll.</p>
23437 * @see #stopNestedScroll()
23477 public void stopNestedScroll() { method in class:View

Completed in 601 milliseconds