Searched defs:onNestedScrollAccepted (Results 1 - 18 of 18) sorted by relevance

/frameworks/support/core-ui/java/android/support/v4/view/
H A DNestedScrollingParentHelper.java61 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, method in class:NestedScrollingParentHelper
63 onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH);
74 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, method in class:NestedScrollingParentHelper
/frameworks/support/compat/java/android/support/v4/view/
H A DNestedScrollingParent.java81 void onNestedScrollAccepted(@NonNull View child, @NonNull View target, @ScrollAxis int axes); method in interface:NestedScrollingParent
H A DNestedScrollingParent2.java84 void onNestedScrollAccepted(@NonNull View child, @NonNull View target, @ScrollAxis int axes, method in interface:NestedScrollingParent2
H A DViewParentCompat.java47 public void onNestedScrollAccepted(ViewParent parent, View child, View target, method in class:ViewParentCompat.ViewParentCompatBaseImpl
50 ((NestedScrollingParent) parent).onNestedScrollAccepted(child, target,
124 public void onNestedScrollAccepted(ViewParent parent, View child, View target, method in class:ViewParentCompat.ViewParentCompatApi21Impl
127 parent.onNestedScrollAccepted(child, target, nestedScrollAxes);
130 + "method onNestedScrollAccepted", e);
256 * {@link #onNestedScrollAccepted(ViewParent, View, View, int, int)} using the touch input type.
264 public static void onNestedScrollAccepted(ViewParent parent, View child, View target, method in class:ViewParentCompat
266 onNestedScrollAccepted(parent, child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
370 public static void onNestedScrollAccepted(ViewParent parent, View child, View target, method in class:ViewParentCompat
374 ((NestedScrollingParent2) parent).onNestedScrollAccepted(chil
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/test/
H A DNestedScrollingParent2Adapter.java34 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, method in class:NestedScrollingParent2Adapter
58 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:NestedScrollingParent2Adapter
59 onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DTestedFrameLayout.java139 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:TestedFrameLayout
140 onNestedScrollAccepted(child, target, axes, ViewCompat.TYPE_TOUCH);
175 public void onNestedScrollAccepted(@NonNull View child, @NonNull View target, method in class:TestedFrameLayout
178 mNestedScrollingDelegate.onNestedScrollAccepted(child, target, axes, type);
/frameworks/base/core/java/android/view/
H A DViewParent.java541 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes); method in interface:ViewParent
H A DViewGroup.java7279 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:ViewGroup
H A DViewRootImpl.java7330 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { method in class:ViewRootImpl
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java529 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:ActionBarOverlayLayout
530 super.onNestedScrollAccepted(child, target, axes);
H A DResolverDrawerLayout.java630 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:ResolverDrawerLayout
631 super.onNestedScrollAccepted(child, target, axes);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarOverlayLayout.java475 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:ActionBarOverlayLayout
476 mParentHelper.onNestedScrollAccepted(child, target, axes);
/frameworks/support/wear/src/android/support/wear/widget/drawer/
H A DWearableDrawerLayout.java877 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { method in class:WearableDrawerLayout
878 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, nestedScrollAxes);
/frameworks/base/core/java/android/widget/
H A DScrollView.java1702 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:ScrollView
1703 super.onNestedScrollAccepted(child, target, axes);
H A DAbsListView.java4276 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:AbsListView
4277 super.onNestedScrollAccepted(child, target, axes);
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java297 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { method in class:NestedScrollView
298 mParentHelper.onNestedScrollAccepted(child, target, nestedScrollAxes);
H A DSwipeRefreshLayout.java756 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:SwipeRefreshLayout
758 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, axes);
/frameworks/support/design/src/android/support/design/widget/
H A DCoordinatorLayout.java1732 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { method in class:CoordinatorLayout
1733 onNestedScrollAccepted(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
1737 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes, int type) { method in class:CoordinatorLayout
1738 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, nestedScrollAxes, type);
1751 viewBehavior.onNestedScrollAccepted(this, view, child, target,
2316 * {@link #onNestedScrollAccepted(CoordinatorLayout, View, View, View, int, int)}. This
2320 public void onNestedScrollAccepted(@NonNull CoordinatorLayout coordinatorLayout, method in class:CoordinatorLayout.Behavior
2345 * @see NestedScrollingParent2#onNestedScrollAccepted(View, View, int, int)
2347 public void onNestedScrollAccepted(@NonNull CoordinatorLayout coordinatorLayout, method in class:CoordinatorLayout.Behavior
2351 onNestedScrollAccepted(coordinatorLayou
[all...]

Completed in 1003 milliseconds