HomeSort by relevance Sort by last modified time
    Searched defs:startNestedScroll (Results 1 - 12 of 12) sorted by null

  /frameworks/support/compat/src/main/java/androidx/core/view/
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);
91 * @see #startNestedScroll(int, int)
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);
118 * @see #startNestedScroll(int)
NestedScrollingChildHelper.java 125 * See {@link androidx.core.view.NestedScrollingChild#startNestedScroll(int)}.
128 public boolean startNestedScroll(@ScrollAxis int axes) {
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) {
ViewCompat.java     [all...]
  /frameworks/base/core/java/com/android/internal/widget/
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);
114 * @see #startNestedScroll(int)
  /frameworks/support/compat/src/androidTest/java/androidx/core/widget/
NestedScrollViewNestedScrollingParentTest.java 676 public boolean startNestedScroll(int axes, int type) {
713 public boolean startNestedScroll(int axes) {
  /frameworks/support/swiperefreshlayout/src/main/java/androidx/swiperefreshlayout/widget/
SwipeRefreshLayout.java 774 startNestedScroll(axes & ViewCompat.SCROLL_AXIS_VERTICAL);
862 public boolean startNestedScroll(int axes) {
863 return mNestedScrollingChildHelper.startNestedScroll(axes);
    [all...]
  /frameworks/support/compat/src/main/java/androidx/core/widget/
NestedScrollView.java 220 public boolean startNestedScroll(int axes, int type) {
221 return mChildHelper.startNestedScroll(axes, type);
260 public boolean startNestedScroll(int axes) {
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);
    [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
RecyclerView.java     [all...]
  /frameworks/base/core/java/android/view/
View.java     [all...]
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/27/
android.jar 

Completed in 181 milliseconds