Home
last modified time | relevance | path

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

/packages/apps/Car/Launcher/libs/appgrid/lib/src/com/android/car/carlauncher/recyclerview/
DAppGridAdapter.java67 private int mPageScrollDestination; field in AppGridAdapter
276 mPageScrollDestination = mIndexingHelper.roundToFirstIndexOnPage(gridPosition); in setDragStartPoint()
277 mSnapCallback.notifySnapToPosition(mPageScrollDestination); in setDragStartPoint()
289 mPageScrollDestination = mIndexingHelper.roundToFirstIndexOnPage(gridPositionTo); in moveAppItem()
290 mSnapCallback.notifySnapToPosition(mPageScrollDestination); in moveAppItem()
307 newDestination = mPageScrollDestination + blockSize; in updatePageScrollDestination()
308 mPageScrollDestination = (newDestination >= getItemCount()) ? mPageScrollDestination : in updatePageScrollDestination()
311 newDestination = mPageScrollDestination - blockSize; in updatePageScrollDestination()
312 mPageScrollDestination = (newDestination < 0) ? mPageScrollDestination : in updatePageScrollDestination()
315 mSnapCallback.notifySnapToPosition(mPageScrollDestination); in updatePageScrollDestination()
[all …]