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.java46 public void onNestedScrollAccepted(ViewParent parent, View child, View target, method in class:ViewParentCompat.ViewParentCompatBaseImpl
49 ((NestedScrollingParent) parent).onNestedScrollAccepted(child, target,
123 public void onNestedScrollAccepted(ViewParent parent, View child, View target, method in class:ViewParentCompat.ViewParentCompatApi21Impl
126 parent.onNestedScrollAccepted(child, target, nestedScrollAxes);
129 + "method onNestedScrollAccepted", e);
255 * {@link #onNestedScrollAccepted(ViewParent, View, View, int, int)} using the touch input type.
263 public static void onNestedScrollAccepted(ViewParent parent, View child, View target, method in class:ViewParentCompat
265 onNestedScrollAccepted(parent, child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
369 public static void onNestedScrollAccepted(ViewParent parent, View child, View target, method in class:ViewParentCompat
373 ((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.java7301 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:ViewGroup
H A DViewRootImpl.java7357 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.java876 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { method in class:WearableDrawerLayout
877 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.java4269 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:AbsListView
4270 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.java755 public void onNestedScrollAccepted(View child, View target, int axes) { method in class:SwipeRefreshLayout
757 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, axes);
/frameworks/support/design/src/android/support/design/widget/
H A DCoordinatorLayout.java1737 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes) { method in class:CoordinatorLayout
1738 onNestedScrollAccepted(child, target, nestedScrollAxes, ViewCompat.TYPE_TOUCH);
1742 public void onNestedScrollAccepted(View child, View target, int nestedScrollAxes, int type) { method in class:CoordinatorLayout
1743 mNestedScrollingParentHelper.onNestedScrollAccepted(child, target, nestedScrollAxes, type);
1756 viewBehavior.onNestedScrollAccepted(this, view, child, target,
2321 * {@link #onNestedScrollAccepted(CoordinatorLayout, View, View, View, int, int)}. This
2325 public void onNestedScrollAccepted(@NonNull CoordinatorLayout coordinatorLayout, method in class:CoordinatorLayout.Behavior
2350 * @see NestedScrollingParent2#onNestedScrollAccepted(View, View, int, int)
2352 public void onNestedScrollAccepted(@NonNull CoordinatorLayout coordinatorLayout, method in class:CoordinatorLayout.Behavior
2356 onNestedScrollAccepted(coordinatorLayou
[all...]

Completed in 4038 milliseconds