Home
last modified time | relevance | path

Searched refs:getScrollState (Results 1 – 17 of 17) sorted by relevance

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
DRecyclerViewLayoutTest.java586 while (mRecyclerView.getScrollState() != SCROLL_STATE_IDLE) { in fling()
1007 assertEquals(SCROLL_STATE_IDLE, recyclerView.getScrollState()); in testScrollStateForSmoothScroll()
1038 assertEquals(SCROLL_STATE_IDLE, recyclerView.getScrollState()); in testScrollStateForSmoothScrollWithStop()
1061 assertEquals(SCROLL_STATE_IDLE, recyclerView.getScrollState()); in testScrollStateForSmoothScrollWithStop()
1076 assertEquals(SCROLL_STATE_IDLE, recyclerView.getScrollState()); in testScrollStateForFling()
1110 assertEquals(SCROLL_STATE_IDLE, recyclerView.getScrollState()); in testScrollStateForFlingWithStop()
1136 assertEquals(SCROLL_STATE_IDLE, recyclerView.getScrollState()); in testScrollStateForFlingWithStop()
1151 assertEquals(SCROLL_STATE_IDLE, recyclerView.getScrollState()); in testScrollStateDrag()
1458 while (rv.getScrollState() != SCROLL_STATE_IDLE) { in testConsecutiveSmoothScroll()
DLinearLayoutManagerTest.java326 } while (mRecyclerView.getScrollState() != RecyclerView.SCROLL_STATE_IDLE); in keepFocusOnResizeTest()
782 mRecyclerView.getScrollState() != RecyclerView.SCROLL_STATE_IDLE) { in getFirstLastChildrenTest()
DBaseRecyclerViewInstrumentationTest.java346 mRecyclerView.getScrollState() != RecyclerView.SCROLL_STATE_IDLE) { in smoothScrollToPosition()
DStaggeredGridLayoutManagerTest.java534 mRecyclerView.getScrollState() != RecyclerView.SCROLL_STATE_IDLE) { in getFirstLastChildrenTest()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
DBrowseSupportFragment.java451 return mHeadersSupportFragment.getVerticalGridView().getScrollState() in isVerticalScrolling()
453 || mRowsSupportFragment.getVerticalGridView().getScrollState() in isVerticalScrolling()
DBrowseFragment.java449 return mHeadersFragment.getVerticalGridView().getScrollState() in isVerticalScrolling()
451 || mRowsFragment.getVerticalGridView().getScrollState() in isVerticalScrolling()
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
DPrintPreviewController.java323 mOldScrollState = mRecyclerView.getScrollState(); in PreloadController()
/frameworks/support/v17/tests/src/android/support/v17/leanback/widget/
DGridWidgetTest.java115 mGridView.getScrollState() != BaseGridView.SCROLL_STATE_IDLE) { in waitForScrollIdle()
168 mGridView.getScrollState() != BaseGridView.SCROLL_STATE_IDLE); in scroll()
569 assertEquals(mGridView.getScrollState(), BaseGridView.SCROLL_STATE_SETTLING); in testBug22209986()
1556 mGridView.getScrollState() != BaseGridView.SCROLL_STATE_IDLE) { in testSmoothscrollerInterrupted()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DGridLayoutManager.java1725 && mBaseGridView.getScrollState() != RecyclerView.SCROLL_STATE_IDLE) { in onLayoutChildren()
2725 final boolean isScroll = mBaseGridView.getScrollState() != RecyclerView.SCROLL_STATE_IDLE; in onFocusSearchFailed()
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
DItemTouchHelper.java937 if (mRecyclerView.getScrollState() == RecyclerView.SCROLL_STATE_DRAGGING) { in checkSelectForSwipe()
/frameworks/support/v7/recyclerview/api/
D22.0.0.txt157 method public int getScrollState();
D22.1.0.txt208 method public int getScrollState();
D22.2.0.txt253 method public int getScrollState();
D22.2.1.txt256 method public int getScrollState();
D23.txt283 method public int getScrollState();
Dcurrent.txt283 method public int getScrollState();
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DRecyclerView.java1125 public int getScrollState() { in getScrollState() method in RecyclerView