/frameworks/support/compat/src/main/java/androidx/core/view/ |
H A D | NestedScrollingChild2.java | 49 * <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 D | NestedScrollingChild.java | 78 * <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 D | NestedScrollingChildHelper.java | 125 * 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 D | ViewCompat.java | 2481 * <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 D | NestedScrollingChild.java | 74 * <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 D | NestedScrollViewNestedScrollingParentTest.java | 676 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 D | NestedScrollView.java | 220 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 D | SwipeRefreshLayout.java | 774 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 D | RecyclerView.java | 2268 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 D | View.java | 4729 * 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...] |