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.java561 ShortcutAndWidgetContainer nextPage, View oldView, int edgeColumn) {
564 int column = (edgeColumn == NEXT_PAGE_LEFT_COLUMN) ^ nextPage.invertLayoutHorizontally()
565 ? 0 : (((CellLayout) nextPage.getParent()).getCountX() - 1);
569 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.java1619 int nextPage = Math.max(0, mCurrentPage - 1); in onTouchEvent() local
1620 if (nextPage != mCurrentPage) { in onTouchEvent()
1621 snapToPage(nextPage); in onTouchEvent()
1629 int nextPage = Math.min(getChildCount() - 1, mCurrentPage + 1); in onTouchEvent() local
1630 if (nextPage != mCurrentPage) { in onTouchEvent()
1631 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.java2964 int nextPage = getNextPage();
2969 layout = verifyInsidePage(nextPage + (mIsRtl ? 1 : -1), mTempTouchCoordinates);
2976 layout = verifyInsidePage(nextPage + (mIsRtl ? -1 : 1), mTempTouchCoordinates);
2980 if (layout == null && nextPage >= numCustomPages() && nextPage < getPageCount()) {
2981 layout = (CellLayout) getChildAt(nextPage);