Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/util/
DFocusLogic.java562 ShortcutAndWidgetContainer nextPage, View oldView, int edgeColumn) {
565 int column = (edgeColumn == NEXT_PAGE_LEFT_COLUMN) ^ nextPage.invertLayoutHorizontally()
566 ? 0 : (((CellLayout) nextPage.getParent()).getCountX() - 1);
570 View newView = nextPage.getChildAt(column, row);
/packages/apps/Launcher2/src/com/android/launcher2/
DPagedView.java1332 int nextPage = Math.max(0, mCurrentPage - 1); in onTouchEvent()
1333 if (nextPage != mCurrentPage) { in onTouchEvent()
1334 snapToPage(nextPage); in onTouchEvent()
1342 int nextPage = Math.min(getChildCount() - 1, mCurrentPage + 1); in onTouchEvent()
1343 if (nextPage != mCurrentPage) { in onTouchEvent()
1344 snapToPage(nextPage); in onTouchEvent()
/packages/apps/Launcher3/src/com/android/launcher3/
DPagedView.java1652 int nextPage = Math.max(0, mCurrentPage - 1); in onTouchEvent() local
1653 if (nextPage != mCurrentPage) { in onTouchEvent()
1654 snapToPage(nextPage); in onTouchEvent()
1662 int nextPage = Math.min(getChildCount() - 1, mCurrentPage + 1); in onTouchEvent() local
1663 if (nextPage != mCurrentPage) { in onTouchEvent()
1664 snapToPage(nextPage); in onTouchEvent()
DFocusHelper.java304 CellLayout nextPage = (CellLayout) workspace.getPageAt(pageIndex + 1); in handleHotseatButtonKeyEvent() local
305 boolean isNextPageFullscreen = ((CellLayout.LayoutParams) nextPage in handleHotseatButtonKeyEvent()
DWorkspace.java3057 int nextPage = getNextPage();
3062 layout = verifyInsidePage(nextPage + (mIsRtl ? 1 : -1), mTempTouchCoordinates);
3069 layout = verifyInsidePage(nextPage + (mIsRtl ? -1 : 1), mTempTouchCoordinates);
3073 if (layout == null && nextPage >= numCustomPages() && nextPage < getPageCount()) {
3074 layout = (CellLayout) getChildAt(nextPage);