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

/frameworks/support/v4/java/android/support/v4/view/
H A DNestedScrollingChild.java75 * <p>The view will call startNestedScroll upon initiating a scroll operation. In the case
82 * <p>If <code>startNestedScroll</code> returns true, a cooperative parent was found.
84 * Calling startNestedScroll while a nested scroll is already in progress will return true.</p>
108 public boolean startNestedScroll(int axes); method in interface:NestedScrollingChild
115 * @see #startNestedScroll(int)
H A DNestedScrollingChildHelper.java101 * See {@link NestedScrollingChild#startNestedScroll(int)}.
104 public boolean startNestedScroll(int axes) { method in class:NestedScrollingChildHelper
H A DViewCompat.java459 boolean startNestedScroll(View view, int axes); method in interface:ViewCompat.ViewCompatImpl
987 public boolean startNestedScroll(View view, int axes) { method in class:ViewCompat.BaseViewCompatImpl
989 return ((NestedScrollingChild) view).startNestedScroll(axes);
1633 public boolean startNestedScroll(View view, int axes) { method in class:ViewCompat.LollipopViewCompatImpl
1634 return ViewCompatLollipop.startNestedScroll(view, axes);
3096 * <p>The view will call startNestedScroll upon initiating a scroll operation. In the case
3103 * <p>If <code>startNestedScroll</code> returns true, a cooperative parent was found.
3105 * Calling startNestedScroll while a nested scroll is already in progress will return true.</p>
3129 public static boolean startNestedScroll(View view, int axes) { method in class:ViewCompat
3130 return IMPL.startNestedScroll(vie
[all...]
/frameworks/support/v4/api21/android/support/v4/view/
H A DViewCompatLollipop.java165 public static boolean startNestedScroll(View view, int axes) { method in class:ViewCompatLollipop
166 return view.startNestedScroll(axes);
/frameworks/support/v4/java/android/support/v4/widget/
H A DNestedScrollView.java221 public boolean startNestedScroll(int axes) { method in class:NestedScrollView
222 return mChildHelper.startNestedScroll(axes);
267 startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL);
691 startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL);
754 startNestedScroll(ViewCompat.SCROLL_AXIS_VERTICAL);
H A DSwipeRefreshLayout.java758 startNestedScroll(axes & ViewCompat.SCROLL_AXIS_VERTICAL);
846 public boolean startNestedScroll(int axes) { method in class:SwipeRefreshLayout
847 return mNestedScrollingChildHelper.startNestedScroll(axes);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java2484 startNestedScroll(nestedScrollAxis);
2591 startNestedScroll(nestedScrollAxis);
9765 public boolean startNestedScroll(int axes) { method in class:RecyclerView
9766 return getScrollingChildHelper().startNestedScroll(axes);
/frameworks/base/core/java/android/view/
H A DView.java3929 * This is set by {@link #startNestedScroll(int)} during a touch interaction and cleared
21010 * <p>The view will call startNestedScroll upon initiating a scroll operation. In the case
21017 * <p>If <code>startNestedScroll</code> returns true, a cooperative parent was found.
21019 * Calling startNestedScroll while a nested scroll is already in progress will return true.</p>
21042 public boolean startNestedScroll(int axes) { method in class:View
21076 * @see #startNestedScroll(int)

Completed in 4425 milliseconds