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

/frameworks/support/v4/java/android/support/v4/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/opt/setupwizard/library/full-support/test/src/com/android/setupwizardlib/test/
H A DRecyclerViewRequireScrollHelperTest.java104 public int computeVerticalScrollOffset() { method in class:RecyclerViewRequireScrollHelperTest.TestRecyclerView
/frameworks/base/core/java/android/widget/
H A DGridView.java2303 protected int computeVerticalScrollOffset() { method in class:GridView
H A DScrollView.java1257 protected int computeVerticalScrollOffset() { method in class:ScrollView
1258 return Math.max(0, super.computeVerticalScrollOffset());
H A DNumberPicker.java1151 protected int computeVerticalScrollOffset() { method in class:NumberPicker
H A DAbsListView.java2042 protected int computeVerticalScrollOffset() { method in class:AbsListView
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java416 * See {@link android.webkit.WebView#computeVerticalScrollOffset}
418 public int computeVerticalScrollOffset(); method in interface:WebViewProvider.ScrollDelegate
H A DWebView.java2405 protected int computeVerticalScrollOffset() { method in class:WebView
2406 return mProvider.getScrollDelegate().computeVerticalScrollOffset();
/frameworks/support/v4/java/android/support/v4/widget/
H A DNestedScrollView.java1361 public int computeVerticalScrollOffset() { method in class:NestedScrollView
1362 return Math.max(0, super.computeVerticalScrollOffset());
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java1052 public int computeVerticalScrollOffset(RecyclerView.State state) { method in class:LinearLayoutManager
H A DStaggeredGridLayoutManager.java1064 public int computeVerticalScrollOffset(RecyclerView.State state) { method in class:StaggeredGridLayoutManager
H A DRecyclerView.java1672 * {@link RecyclerView.LayoutManager#computeVerticalScrollOffset(RecyclerView.State)} in your
1676 * @see android.support.v7.widget.RecyclerView.LayoutManager#computeVerticalScrollOffset
1680 public int computeVerticalScrollOffset() { method in class:RecyclerView
1684 return mLayout.canScrollVertically() ? mLayout.computeVerticalScrollOffset(mState) : 0;
1692 * {@link #computeVerticalScrollRange()} and {@link #computeVerticalScrollOffset()}.</p>
1715 * {@link #computeVerticalScrollExtent()} and {@link #computeVerticalScrollOffset()}.</p>
8522 * <p>Read {@link RecyclerView#computeVerticalScrollOffset()} for details.</p>
8528 * @see RecyclerView#computeVerticalScrollOffset()
8530 public int computeVerticalScrollOffset(State state) { method in class:RecyclerView.LayoutManager
/frameworks/base/core/java/android/view/
H A DView.java5214 final int offset = computeVerticalScrollOffset();
10984 final int offset = computeVerticalScrollOffset();
14209 return computeVerticalScrollOffset() > 0 ? 1.0f : 0.0f;
14223 return computeVerticalScrollOffset() + computeVerticalScrollExtent() <
14541 * {@link #computeVerticalScrollOffset()}.</p>
14548 * @see #computeVerticalScrollOffset()
14572 protected int computeVerticalScrollOffset() { method in class:View
14583 * {@link #computeVerticalScrollOffset()}.</p>
14590 * @see #computeVerticalScrollOffset()
14621 final int offset = computeVerticalScrollOffset();
[all...]

Completed in 9350 milliseconds