Searched defs:computeVerticalScrollOffset (Results 1 - 15 of 15) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/view/
H A DScrollingView.java85 * {@link #computeVerticalScrollOffset()}.</p>
92 * @see #computeVerticalScrollOffset()
114 int computeVerticalScrollOffset(); method in interface:ScrollingView
123 * {@link #computeVerticalScrollOffset()}.</p>
130 * @see #computeVerticalScrollOffset()
/frameworks/base/core/java/com/android/internal/widget/
H A DScrollingView.java85 * {@link #computeVerticalScrollOffset()}.</p>
92 * @see #computeVerticalScrollOffset()
114 int computeVerticalScrollOffset(); method in interface:ScrollingView
123 * {@link #computeVerticalScrollOffset()}.</p>
130 * @see #computeVerticalScrollOffset()
H A DLinearLayoutManager.java1057 public int computeVerticalScrollOffset(RecyclerView.State state) { method in class:LinearLayoutManager
H A DRecyclerView.java1782 * {@link RecyclerView.LayoutManager#computeVerticalScrollOffset(RecyclerView.State)} in your
1786 * @see com.android.internal.widget.RecyclerView.LayoutManager#computeVerticalScrollOffset
1790 public int computeVerticalScrollOffset() { method in class:RecyclerView
1794 return mLayout.canScrollVertically() ? mLayout.computeVerticalScrollOffset(mState) : 0;
1802 * {@link #computeVerticalScrollRange()} and {@link #computeVerticalScrollOffset()}.</p>
1825 * {@link #computeVerticalScrollExtent()} and {@link #computeVerticalScrollOffset()}.</p>
9186 * <p>Read {@link RecyclerView#computeVerticalScrollOffset()} for details.</p>
9192 * @see RecyclerView#computeVerticalScrollOffset()
9194 public int computeVerticalScrollOffset(State state) { method in class:RecyclerView.LayoutManager
/frameworks/base/core/java/android/widget/
H A DGridView.java2312 protected int computeVerticalScrollOffset() { method in class:GridView
H A DScrollView.java1272 protected int computeVerticalScrollOffset() { method in class:ScrollView
1273 return Math.max(0, super.computeVerticalScrollOffset());
H A DNumberPicker.java1166 protected int computeVerticalScrollOffset() { method in class:NumberPicker
H A DAbsListView.java2046 protected int computeVerticalScrollOffset() { method in class:AbsListView
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java1443 public int computeVerticalScrollOffset() { method in class:NestedScrollView
1444 return Math.max(0, super.computeVerticalScrollOffset());
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DLinearLayoutManager.java1084 public int computeVerticalScrollOffset(RecyclerView.State state) { method in class:LinearLayoutManager
H A DStaggeredGridLayoutManager.java1082 public int computeVerticalScrollOffset(RecyclerView.State state) { method in class:StaggeredGridLayoutManager
H A DRecyclerView.java2000 * {@link RecyclerView.LayoutManager#computeVerticalScrollOffset(RecyclerView.State)} in your
2004 * @see RecyclerView.LayoutManager#computeVerticalScrollOffset
2008 public int computeVerticalScrollOffset() { method in class:RecyclerView
2012 return mLayout.canScrollVertically() ? mLayout.computeVerticalScrollOffset(mState) : 0;
2020 * {@link #computeVerticalScrollRange()} and {@link #computeVerticalScrollOffset()}.</p>
2043 * {@link #computeVerticalScrollExtent()} and {@link #computeVerticalScrollOffset()}.</p>
9897 * <p>Read {@link RecyclerView#computeVerticalScrollOffset()} for details.</p>
9903 * @see RecyclerView#computeVerticalScrollOffset()
9905 public int computeVerticalScrollOffset(@NonNull State state) { method in class:RecyclerView.LayoutManager
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java457 * See {@link android.webkit.WebView#computeVerticalScrollOffset}
459 public int computeVerticalScrollOffset(); method in interface:WebViewProvider.ScrollDelegate
H A DWebView.java2767 protected int computeVerticalScrollOffset() { method in class:WebView
2768 return mProvider.getScrollDelegate().computeVerticalScrollOffset();
/frameworks/base/core/java/android/view/
H A DView.java6156 final int offset = computeVerticalScrollOffset();
13627 final int offset = computeVerticalScrollOffset();
17036 return computeVerticalScrollOffset() > 0 ? 1.0f : 0.0f;
17050 return computeVerticalScrollOffset() + computeVerticalScrollExtent() <
17368 * {@link #computeVerticalScrollOffset()}.</p>
17375 * @see #computeVerticalScrollOffset()
17399 protected int computeVerticalScrollOffset() { method in class:View
17410 * {@link #computeVerticalScrollOffset()}.</p>
17417 * @see #computeVerticalScrollOffset()
17448 final int offset = computeVerticalScrollOffset();
[all...]

Completed in 427 milliseconds