Searched defs:startNestedScroll (Results 1 - 10 of 10) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/view/
H A DNestedScrollingChild2.java49 * <p>The view will call startNestedScroll upon initiating a scroll operation. In the case
56 * <p>If <code>startNestedScroll</code> returns true, a cooperative parent was found.
58 * Calling startNestedScroll while a nested scroll is already in progress will return true.</p>
83 boolean startNestedScroll(@ScrollAxis int axes, @NestedScrollType int type); method in interface:NestedScrollingChild2
91 * @see #startNestedScroll(int, int)
H A DNestedScrollingChild.java78 * <p>The view will call startNestedScroll upon initiating a scroll operation. In the case
85 * <p>If <code>startNestedScroll</code> returns true, a cooperative parent was found.
87 * Calling startNestedScroll while a nested scroll is already in progress will return true.</p>
111 boolean startNestedScroll(@ScrollAxis int axes); method in interface:NestedScrollingChild
118 * @see #startNestedScroll(int)
H A DNestedScrollingChildHelper.java125 * See {@link androidx.core.view.NestedScrollingChild#startNestedScroll(int)}.
128 public boolean startNestedScroll(@ScrollAxis int axes) { method in class:NestedScrollingChildHelper
129 return startNestedScroll(axes, TYPE_TOUCH);
140 * See {@link androidx.core.view.NestedScrollingChild2#startNestedScroll(int,
144 public boolean startNestedScroll(@ScrollAxis int axes, @NestedScrollType int type) { method in class:NestedScrollingChildHelper
H A DViewCompat.java2481 * <p>This version of the method just calls {@link #startNestedScroll(View, int, int)} using
2490 public static boolean startNestedScroll(@NonNull View view, @ScrollAxis int axes) { method in class:ViewCompat
2492 return view.startNestedScroll(axes);
2495 return ((NestedScrollingChild) view).startNestedScroll(axes);
2506 * @see #startNestedScroll(View, int)
2602 * <p>The view will call startNestedScroll upon initiating a scroll operation. In the case
2609 * <p>If <code>startNestedScroll</code> returns true, a cooperative parent was found.
2611 * Calling startNestedScroll while a nested scroll is already in progress will return true.</p>
2636 public static boolean startNestedScroll(@NonNull View view, @ScrollAxis int axes, method in class:ViewCompat
2639 return ((NestedScrollingChild2) view).startNestedScroll(axe
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DNestedScrollingChild.java74 * <p>The view will call startNestedScroll upon initiating a scroll operation. In the case
81 * <p>If <code>startNestedScroll</code> returns true, a cooperative parent was found.
83 * Calling startNestedScroll while a nested scroll is already in progress will return true.</p>
107 boolean startNestedScroll(int axes); method in interface:NestedScrollingChild
114 * @see #startNestedScroll(int)
/frameworks/support/compat/src/androidTest/java/androidx/core/widget/
H A DNestedScrollViewNestedScrollingParentTest.java676 public boolean startNestedScroll(int axes, int type) { method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView
713 public boolean startNestedScroll(int axes) { method in class:NestedScrollViewNestedScrollingParentTest.NestedScrollingSpyView
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java220 public boolean startNestedScroll(int axes, int type) { method in class:NestedScrollView
221 return mChildHelper.startNestedScroll(axes, type);
260 public boolean startNestedScroll(int axes) { method in class:NestedScrollView
261 return startNestedScroll(axes, ViewCompat.TYPE_TOUCH);
308 startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL, type);
770 startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL, ViewCompat.TYPE_TOUCH);
833 startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL, ViewCompat.TYPE_TOUCH);
1817 startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL, ViewCompat.TYPE_NON_TOUCH);
/frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/
H A DSwipeRefreshLayout.java774 startNestedScroll(axes & ViewCompat.SCROLL_AXIS_VERTICAL);
862 public boolean startNestedScroll(int axes) { method in class:SwipeRefreshLayout
863 return mNestedScrollingChildHelper.startNestedScroll(axes);
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java2268 startNestedScroll(nestedScrollAxis, TYPE_NON_TOUCH);
2976 startNestedScroll(nestedScrollAxis, TYPE_TOUCH);
3083 startNestedScroll(nestedScrollAxis, TYPE_TOUCH);
11229 public boolean startNestedScroll(int axes) { method in class:RecyclerView
11230 return getScrollingChildHelper().startNestedScroll(axes);
11234 public boolean startNestedScroll(int axes, int type) { method in class:RecyclerView
11235 return getScrollingChildHelper().startNestedScroll(axes, type);
/frameworks/base/core/java/android/view/
H A DView.java4729 * This is set by {@link #startNestedScroll(int)} during a touch interaction and cleared
24524 * <p>The view will call startNestedScroll upon initiating a scroll operation. In the case
24531 * <p>If <code>startNestedScroll</code> returns true, a cooperative parent was found.
24533 * Calling startNestedScroll while a nested scroll is already in progress will return true.</p>
24556 public boolean startNestedScroll(int axes) { method in class:View
24590 * @see #startNestedScroll(int)
[all...]

Completed in 106 milliseconds