Searched defs:scrollToPositionWithOffset (Results 1 - 12 of 12) sorted by path

/frameworks/base/core/java/com/android/internal/widget/
H A DLinearLayoutManager.java122 * Used to keep the offset value when {@link #scrollToPositionWithOffset(int, int)} is
985 * {@link #scrollToPositionWithOffset(int, int)}.</p>
990 * @see #scrollToPositionWithOffset(int, int)
1008 * <code>scrollToPositionWithOffset(10, 20)</code> will layout such that
1021 public void scrollToPositionWithOffset(int position, int offset) { method in class:LinearLayoutManager
2015 scrollToPositionWithOffset(targetPos,
2020 scrollToPositionWithOffset(targetPos,
2026 scrollToPositionWithOffset(targetPos, mOrientationHelper.getDecoratedStart(target));
2028 scrollToPositionWithOffset(targetPos,
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DBaseLayoutManagerActivity.java125 scrollToPositionWithOffset(smooth, spinner.getSelectedItemPosition(), offset);
166 protected void scrollToPositionWithOffset(boolean smooth, int position, int offset) { method in class:BaseLayoutManagerActivity
H A DGridLayoutManagerActivity.java105 protected void scrollToPositionWithOffset(boolean smooth, int position, int offset) { method in class:GridLayoutManagerActivity
107 super.scrollToPositionWithOffset(smooth, position, offset);
109 mLayoutManager.scrollToPositionWithOffset(position, offset);
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DBaseLayoutManagerActivity.java125 scrollToPositionWithOffset(smooth, spinner.getSelectedItemPosition(), offset);
166 protected void scrollToPositionWithOffset(boolean smooth, int position, int offset) { method in class:BaseLayoutManagerActivity
H A DGridLayoutManagerActivity.java105 protected void scrollToPositionWithOffset(boolean smooth, int position, int offset) { method in class:GridLayoutManagerActivity
107 super.scrollToPositionWithOffset(smooth, position, offset);
109 mLayoutManager.scrollToPositionWithOffset(position, offset);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java126 * Used to keep the offset value when {@link #scrollToPositionWithOffset(int, int)} is
990 * {@link #scrollToPositionWithOffset(int, int)}.</p>
995 * @see #scrollToPositionWithOffset(int, int)
1013 * <code>scrollToPositionWithOffset(10, 20)</code> will layout such that
1026 public void scrollToPositionWithOffset(int position, int offset) { method in class:LinearLayoutManager
2084 scrollToPositionWithOffset(targetPos,
2089 scrollToPositionWithOffset(targetPos,
2095 scrollToPositionWithOffset(targetPos, mOrientationHelper.getDecoratedStart(target));
2097 scrollToPositionWithOffset(targetPos,
H A DStaggeredGridLayoutManager.java152 * Used to keep the offset value when {@link #scrollToPositionWithOffset(int, int)} is
2061 public void scrollToPositionWithOffset(int position, int offset) { method in class:StaggeredGridLayoutManager
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DAsyncListUtilLayoutTest.java151 scrollToPositionWithOffset(rangeStart, 0);
156 void scrollToPositionWithOffset(final int position, final int offset) throws Throwable { method in class:AsyncListUtilLayoutTest
160 mLayoutManager.scrollToPositionWithOffset(position, offset);
H A DBaseLinearLayoutManagerTest.java159 mLayoutManager.scrollToPositionWithOffset(scrollPosition,
179 void scrollToPositionWithOffset(final int position, final int offset) throws Throwable { method in class:BaseLinearLayoutManagerTest
183 mLayoutManager.scrollToPositionWithOffset(position, offset);
H A DBaseStaggeredGridLayoutManagerTest.java251 protected void scrollToPositionWithOffset(final int position, final int offset) method in class:BaseStaggeredGridLayoutManagerTest
256 mLayoutManager.scrollToPositionWithOffset(position, offset);
H A DLinearLayoutManagerSavedStateTest.java113 scrollToPositionWithOffset(testAdapter().getItemCount() / 3,
127 scrollToPositionWithOffset(testAdapter().getItemCount() * 2 / 3,
371 void scrollToPositionWithOffset(final int position, final int offset) { method in class:LinearLayoutManagerSavedStateTest.PostLayoutRunnable
375 layoutManager().scrollToPositionWithOffset(position, offset);
H A DStaggeredGridLayoutManagerSavedStateTest.java90 scrollToPositionWithOffset(adapter().getItemCount() / 3,
104 scrollToPositionWithOffset(adapter().getItemCount() * 2 / 3,
240 public void scrollToPositionWithOffset(int position, int offset) throws Throwable { method in class:StaggeredGridLayoutManagerSavedStateTest.PostLayoutRunnable
241 mTest.scrollToPositionWithOffset(position, offset);

Completed in 166 milliseconds