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

  /frameworks/support/compat/java/android/support/v4/view/
NestedScrollingChild2.java 48 * <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);
90 * @see #startNestedScroll(int, int)
NestedScrollingChild.java 77 * <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);
117 * @see #startNestedScroll(int)
ViewCompat.java 829 public boolean startNestedScroll(View view, int axes) {
831 return ((NestedScrollingChild) view).startNestedScroll(axes);
    [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/core-ui/java/android/support/v4/view/
NestedScrollingChildHelper.java 124 * See {@link android.support.v4.view.NestedScrollingChild#startNestedScroll(int)}.
127 public boolean startNestedScroll(@ScrollAxis int axes) {
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) {
  /frameworks/support/core-ui/java/android/support/v4/widget/
SwipeRefreshLayout.java 759 startNestedScroll(axes & ViewCompat.SCROLL_AXIS_VERTICAL);
847 public boolean startNestedScroll(int axes) {
848 return mNestedScrollingChildHelper.startNestedScroll(axes);
    [all...]
NestedScrollView.java 225 public boolean startNestedScroll(int axes) {
226 return mChildHelper.startNestedScroll(axes);
230 public boolean startNestedScroll(int axes, int type) {
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);
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
RecyclerView.java     [all...]
  /prebuilts/sdk/current/support/core-ui/
android-support-core-ui.jar 
  /prebuilts/sdk/current/support/compat/libs/
android-support-compat.jar 
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/27/
android.jar 

Completed in 370 milliseconds