Searched defs:onStopNestedScroll (Results 1 - 20 of 20) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/view/
H A DNestedScrollingParentHelper.java99 public void onStopNestedScroll(@NonNull View target) { method in class:NestedScrollingParentHelper
100 onStopNestedScroll(target, ViewCompat.TYPE_TOUCH);
110 public void onStopNestedScroll(@NonNull View target, @NestedScrollType int type) { method in class:NestedScrollingParentHelper
H A DNestedScrollingParent2.java54 * will receive a call to {@link #onStopNestedScroll(View, int)}.
82 * @see #onStopNestedScroll(View, int)
99 void onStopNestedScroll(@NonNull View target, @NestedScrollType int type); method in interface:NestedScrollingParent2
H A DNestedScrollingParent.java55 * will receive a call to {@link #onStopNestedScroll(View)}.
80 * @see #onStopNestedScroll(View)
95 void onStopNestedScroll(@NonNull View target); method in interface:NestedScrollingParent
H A DNestedScrollingChildHelper.java188 ViewParentCompat.onStopNestedScroll(parent, mView, type);
378 public void onStopNestedScroll(@NonNull View child) { method in class:NestedScrollingChildHelper
H A DViewParentCompat.java105 * <p>This version of the method just calls {@link #onStopNestedScroll(ViewParent, View)}
110 public static void onStopNestedScroll(ViewParent parent, View target) { method in class:ViewParentCompat
111 onStopNestedScroll(parent, target, ViewCompat.TYPE_TOUCH);
163 * will receive a call to {@link #onStopNestedScroll(ViewParent, View, int)}.
212 * @see #onStopNestedScroll(ViewParent, View, int)
250 public static void onStopNestedScroll(ViewParent parent, View target, int type) { method in class:ViewParentCompat
253 ((NestedScrollingParent2) parent).onStopNestedScroll(target, type);
258 parent.onStopNestedScroll(target);
261 + "method onStopNestedScroll", e);
264 ((NestedScrollingParent) parent).onStopNestedScroll(targe
[all...]
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/test/
H A DNestedScrollingParent2Adapter.java39 public void onStopNestedScroll(@NonNull View target, @ViewCompat.NestedScrollType int type) { method in class:NestedScrollingParent2Adapter
75 public void onStopNestedScroll(View target) { method in class:NestedScrollingParent2Adapter
76 onStopNestedScroll(target, ViewCompat.TYPE_TOUCH);
/frameworks/base/core/java/android/view/
H A DViewParent.java514 * will receive a call to {@link #onStopNestedScroll(View)}.
539 * @see #onStopNestedScroll(View)
554 public void onStopNestedScroll(View target); method in interface:ViewParent
H A DViewGroup.java7455 * <p>The default implementation of onStopNestedScroll calls
7459 public void onStopNestedScroll(View child) { method in class:ViewGroup
H A DViewRootImpl.java7794 public void onStopNestedScroll(View target) { method in class:ViewRootImpl
/frameworks/support/compat/src/androidTest/java/androidx/core/widget/
H A DNestedScrollViewNestedScrollingParentTest.java248 mNestedScrollView.onStopNestedScroll(mChild, ViewCompat.TYPE_NON_TOUCH);
250 verify(mParent, times(1)).onStopNestedScroll(mNestedScrollView,
252 verify(mParent, times(1)).onStopNestedScroll(any(View.class), anyInt());
272 mNestedScrollView.onStopNestedScroll(mChild, ViewCompat.TYPE_NON_TOUCH);
274 verify(mParent, never()).onStopNestedScroll(any(View.class), anyInt());
292 mNestedScrollView.onStopNestedScroll(mChild, ViewCompat.TYPE_NON_TOUCH);
294 verify(mParent, never()).onStopNestedScroll(any(View.class), anyInt());
312 mNestedScrollView.onStopNestedScroll(mChild);
314 verify(mParent, times(1)).onStopNestedScroll(any(View.class),
316 verify(mParent, times(1)).onStopNestedScroll(an
659 public void onStopNestedScroll(@NonNull View target, int type) { method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView
760 public void onStopNestedScroll(View target) { method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView
[all...]
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DTestedFrameLayout.java197 public void onStopNestedScroll(View target) { method in class:TestedFrameLayout
198 onStopNestedScroll(target, ViewCompat.TYPE_TOUCH);
253 public void onStopNestedScroll(@NonNull View target, @ViewCompat.NestedScrollType int type) { method in class:TestedFrameLayout
255 mNestedScrollingDelegate.onStopNestedScroll(target, type);
H A DRecyclerViewLayoutTest.java1886 verify(nsp, atLeastOnce()).onStopNestedScroll(eq(mRecyclerView), eq(ViewCompat.TYPE_TOUCH));
1912 verify(nsp, atLeastOnce()).onStopNestedScroll(eq(mRecyclerView), eq(ViewCompat.TYPE_TOUCH));
1938 verify(nsp, never()).onStopNestedScroll(mRecyclerView, ViewCompat.TYPE_TOUCH);
1947 verify(nsp, times(1)).onStopNestedScroll(mRecyclerView, ViewCompat.TYPE_NON_TOUCH);
1965 verify(nsp, never()).onStopNestedScroll(mRecyclerView, ViewCompat.TYPE_TOUCH);
1974 verify(nsp, times(1)).onStopNestedScroll(mRecyclerView, ViewCompat.TYPE_NON_TOUCH);
5263 public void onStopNestedScroll(View target) { method in class:RecyclerViewLayoutTest.FullyConsumingNestedScroller
5264 super.onStopNestedScroll(target);
5268 public void onStopNestedScroll(@NonNull View target, method in class:RecyclerViewLayoutTest.FullyConsumingNestedScroller
5270 super.onStopNestedScroll(targe
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java556 public void onStopNestedScroll(View target) { method in class:ActionBarOverlayLayout
557 super.onStopNestedScroll(target);
H A DResolverDrawerLayout.java670 public void onStopNestedScroll(View child) { method in class:ResolverDrawerLayout
671 super.onStopNestedScroll(child);
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DActionBarOverlayLayout.java493 public void onStopNestedScroll(View target) { method in class:ActionBarOverlayLayout
/frameworks/support/wear/src/main/java/androidx/wear/widget/drawer/
H A DWearableDrawerLayout.java889 public void onStopNestedScroll(@NonNull View target) { method in class:WearableDrawerLayout
890 mNestedScrollingParentHelper.onStopNestedScroll(target);
/frameworks/base/core/java/android/widget/
H A DScrollView.java1711 public void onStopNestedScroll(View target) { method in class:ScrollView
1712 super.onStopNestedScroll(target);
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java312 public void onStopNestedScroll(@NonNull View target, int type) { method in class:NestedScrollView
313 mParentHelper.onStopNestedScroll(target, type);
347 public void onStopNestedScroll(View target) { method in class:NestedScrollView
348 onStopNestedScroll(target, ViewCompat.TYPE_TOUCH);
/frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/
H A DSwipeRefreshLayout.java817 public void onStopNestedScroll(View target) { method in class:SwipeRefreshLayout
818 mNestedScrollingParentHelper.onStopNestedScroll(target);
/frameworks/support/coordinatorlayout/src/main/java/androidx/coordinatorlayout/widget/
H A DCoordinatorLayout.java263 onStopNestedScroll(mNestedScrollingTarget);
1784 public void onStopNestedScroll(View target) { method in class:CoordinatorLayout
1785 onStopNestedScroll(target, ViewCompat.TYPE_TOUCH);
1789 public void onStopNestedScroll(View target, int type) { method in class:CoordinatorLayout
1790 mNestedScrollingParentHelper.onStopNestedScroll(target, type);
1802 viewBehavior.onStopNestedScroll(this, view, target, type);
2410 * {@link #onStopNestedScroll(CoordinatorLayout, View, View, int)}. This method will still
2414 public void onStopNestedScroll(@NonNull CoordinatorLayout coordinatorLayout, method in class:CoordinatorLayout.Behavior
2427 * <p><code>onStopNestedScroll</code> marks the end of a single nested scroll event
2438 * @see NestedScrollingParent2#onStopNestedScroll(Vie
2440 public void onStopNestedScroll(@NonNull CoordinatorLayout coordinatorLayout, method in class:CoordinatorLayout.Behavior
[all...]

Completed in 1107 milliseconds