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

/frameworks/support/compat/java/android/support/v4/view/
H A DNestedScrollingChild2.java48 * <p>The view will call startNestedScroll upon initiating a scroll operation. In the case
55 * <p>If <code>startNestedScroll</code> returns true, a cooperative parent was found.
57 * Calling startNestedScroll while a nested scroll is already in progress will return true.</p>
82 boolean startNestedScroll(@ScrollAxis int axes, @NestedScrollType int type); method in interface:NestedScrollingChild2
90 * @see #startNestedScroll(int, int)
H A DNestedScrollingChild.java77 * <p>The view will call startNestedScroll upon initiating a scroll operation. In the case
84 * <p>If <code>startNestedScroll</code> returns true, a cooperative parent was found.
86 * Calling startNestedScroll while a nested scroll is already in progress will return true.</p>
110 boolean startNestedScroll(@ScrollAxis int axes); method in interface:NestedScrollingChild
117 * @see #startNestedScroll(int)
H A DViewCompat.java829 public boolean startNestedScroll(View view, int axes) { method in class:ViewCompat.ViewCompatBaseImpl
831 return ((NestedScrollingChild) view).startNestedScroll(axes);
1302 public boolean startNestedScroll(View view, int axes) { method in class:ViewCompat.ViewCompatApi21Impl
1303 return view.startNestedScroll(axes);
3268 * <p>This version of the method just calls {@link #startNestedScroll(View, int, int)} using
3276 public static boolean startNestedScroll(@NonNull View view, @ScrollAxis int axes) { method in class:ViewCompat
3277 return IMPL.startNestedScroll(view, axes);
3286 * @see #startNestedScroll(View, int)
3354 * <p>The view will call startNestedScroll upon initiating a scroll operation. In the case
3361 * <p>If <code>startNestedScroll</cod
3388 public static boolean startNestedScroll(@NonNull View view, @ScrollAxis int axes, method in class:ViewCompat
[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/core-ui/java/android/support/v4/view/
H A DNestedScrollingChildHelper.java124 * See {@link android.support.v4.view.NestedScrollingChild#startNestedScroll(int)}.
127 public boolean startNestedScroll(@ScrollAxis int axes) { method in class:NestedScrollingChildHelper
128 return startNestedScroll(axes, TYPE_TOUCH);
139 * See {@link android.support.v4.view.NestedScrollingChild2#startNestedScroll(int,
143 public boolean startNestedScroll(@ScrollAxis int axes, @NestedScrollType int type) { method in class:NestedScrollingChildHelper
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java225 public boolean startNestedScroll(int axes) { method in class:NestedScrollView
226 return mChildHelper.startNestedScroll(axes);
230 public boolean startNestedScroll(int axes, int type) { method in class:NestedScrollView
231 return mChildHelper.startNestedScroll(axes, type);
299 startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL);
722 startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL, ViewCompat.TYPE_TOUCH);
785 startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL, ViewCompat.TYPE_TOUCH);
1749 startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL, ViewCompat.TYPE_NON_TOUCH);
H A DSwipeRefreshLayout.java759 startNestedScroll(axes & ViewCompat.SCROLL_AXIS_VERTICAL);
847 public boolean startNestedScroll(int axes) { method in class:SwipeRefreshLayout
848 return mNestedScrollingChildHelper.startNestedScroll(axes);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2158 startNestedScroll(nestedScrollAxis, TYPE_NON_TOUCH);
2831 startNestedScroll(nestedScrollAxis, TYPE_TOUCH);
2938 startNestedScroll(nestedScrollAxis, TYPE_TOUCH);
10911 public boolean startNestedScroll(int axes) { method in class:RecyclerView
10912 return getScrollingChildHelper().startNestedScroll(axes);
10916 public boolean startNestedScroll(int axes, int type) { method in class:RecyclerView
10917 return getScrollingChildHelper().startNestedScroll(axes, type);
/frameworks/base/core/java/android/view/
H A DView.java4496 * This is set by {@link #startNestedScroll(int)} during a touch interaction and cleared
23409 * <p>The view will call startNestedScroll upon initiating a scroll operation. In the case
23416 * <p>If <code>startNestedScroll</code> returns true, a cooperative parent was found.
23418 * Calling startNestedScroll while a nested scroll is already in progress will return true.</p>
23441 public boolean startNestedScroll(int axes) { method in class:View
23475 * @see #startNestedScroll(int)

Completed in 677 milliseconds