Searched refs:onNestedScroll (Results 1 - 21 of 21) sorted by relevance

/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/test/
H A DNestedScrollingParent2Adapter.java43 public void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, method in class:NestedScrollingParent2Adapter
68 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:NestedScrollingParent2Adapter
70 onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
/frameworks/support/compat/src/main/java/androidx/core/view/
H A DNestedScrollingParent.java118 void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, method in interface:NestedScrollingParent
H A DNestedScrollingParent2.java123 void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, method in interface:NestedScrollingParent2
H A DViewParentCompat.java118 * {@link #onNestedScroll(ViewParent, View, int, int, int, int, int)} using the touch input
127 public static void onNestedScroll(ViewParent parent, View target, int dxConsumed, method in class:ViewParentCompat
129 onNestedScroll(parent, target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
292 public static void onNestedScroll(ViewParent parent, View target, int dxConsumed, method in class:ViewParentCompat
296 ((NestedScrollingParent2) parent).onNestedScroll(target, dxConsumed, dyConsumed,
302 parent.onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed,
306 + "method onNestedScroll", e);
309 ((NestedScrollingParent) parent).onNestedScroll(target, dxConsumed, dyConsumed,
H A DNestedScrollingChildHelper.java235 ViewParentCompat.onNestedScroll(parent, mView, dxConsumed,
/frameworks/support/compat/src/androidTest/java/androidx/core/widget/
H A DNestedScrollViewNestedScrollingParentTest.java328 mNestedScrollView.onNestedScroll(mChild, 0, 0, 0, 50, ViewCompat.TYPE_NON_TOUCH);
343 mNestedScrollView.onNestedScroll(mChild, 0, 0, 0, -50, ViewCompat.TYPE_NON_TOUCH);
363 mNestedScrollView.onNestedScroll(mChild, 0, 0, 0, 50, ViewCompat.TYPE_NON_TOUCH);
365 verify(mParent, times(1)).onNestedScroll(any(View.class), eq(0), eq(50), eq(0),
367 verify(mParent, times(1)).onNestedScroll(any(View.class), anyInt(), anyInt(),
385 mNestedScrollView.onNestedScroll(mChild, 0, 0, 0, 75, ViewCompat.TYPE_NON_TOUCH);
387 verify(mParent, times(1)).onNestedScroll(any(View.class), eq(0), eq(50), eq(0),
389 verify(mParent, times(1)).onNestedScroll(any(View.class), anyInt(), anyInt(),
409 mNestedScrollView.onNestedScroll(mChild, 0, 0, 0, -75, ViewCompat.TYPE_NON_TOUCH);
411 verify(mParent, times(1)).onNestedScroll(an
664 public void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView
765 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView
[all...]
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
H A DTestedFrameLayout.java190 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:TestedFrameLayout
192 onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
236 public void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, method in class:TestedFrameLayout
239 mNestedScrollingDelegate.onNestedScroll(target, dxConsumed, dyConsumed,
/frameworks/base/core/java/android/view/
H A DViewParent.java577 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, method in interface:ViewParent
H A DViewGroup.java7469 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, method in class:ViewGroup
H A DViewRootImpl.java7802 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, method in class:ViewRootImpl
H A DView.java24544 * these values differently. See {@link ViewParent#onNestedScroll(View, int, int, int, int)}.
24646 mNestedScrollingParent.onNestedScroll(this, dxConsumed, dyConsumed,
[all...]
/frameworks/support/coordinatorlayout/src/main/java/androidx/coordinatorlayout/widget/
H A DCoordinatorLayout.java1811 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, method in class:CoordinatorLayout
1813 onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
1818 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, method in class:CoordinatorLayout
1837 viewBehavior.onNestedScroll(this, view, target, dxConsumed, dyConsumed,
2449 * {@link #onNestedScroll(CoordinatorLayout, View, View, int, int, int, int, int)}.
2454 public void onNestedScroll(@NonNull CoordinatorLayout coordinatorLayout, @NonNull V child, method in class:CoordinatorLayout.Behavior
2469 * <p><code>onNestedScroll</code> is called each time the nested scroll is updated by the
2487 * @see NestedScrollingParent2#onNestedScroll(View, int, int, int, int, int)
2489 public void onNestedScroll(@NonNull CoordinatorLayout coordinatorLayout, @NonNull V child, method in class:CoordinatorLayout.Behavior
2493 onNestedScroll(coordinatorLayou
[all...]
/frameworks/support/coordinatorlayout/src/androidTest/java/androidx/coordinatorlayout/widget/
H A DCoordinatorLayoutTest.java556 // Verify that the Behavior's onNestedScroll was called at least once
557 verify(behavior, atLeastOnce()).onNestedScroll(
622 // Verify that the Behavior's onNestedScroll was not called
623 verify(behavior, never()).onNestedScroll(
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java318 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:NestedScrollView
352 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, int dxUnconsumed, method in class:NestedScrollView
354 onNestedScroll(target, dxConsumed, dyConsumed, dxUnconsumed, dyUnconsumed,
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java549 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, method in class:ActionBarOverlayLayout
H A DResolverDrawerLayout.java678 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, method in class:ResolverDrawerLayout
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DActionBarOverlayLayout.java486 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, method in class:ActionBarOverlayLayout
/frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/
H A DSwipeRefreshLayout.java831 public void onNestedScroll(final View target, final int dxConsumed, final int dyConsumed, method in class:SwipeRefreshLayout
/frameworks/support/wear/src/main/java/androidx/wear/widget/drawer/
H A DWearableDrawerLayout.java682 public void onNestedScroll(@NonNull View target, int dxConsumed, int dyConsumed, method in class:WearableDrawerLayout
/frameworks/base/core/java/android/widget/
H A DScrollView.java1716 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, method in class:ScrollView
H A DAbsListView.java4285 public void onNestedScroll(View target, int dxConsumed, int dyConsumed, method in class:AbsListView

Completed in 445 milliseconds