HomeSort by relevance Sort by last modified time
    Searched defs:cellCountX (Results 1 - 2 of 2) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
FocusHelper.java 144 final int cellCountX = parent.getCellCountX();
146 final int x = widgetIndex % cellCountX;
147 final int y = widgetIndex / cellCountX;
195 int newWidgetIndex = ((y - 1) * cellCountX) + x;
208 int newWidgetIndex = Math.min(widgetCount - 1, ((y + 1) * cellCountX) + x);
570 final int cellCountX = layout.getCountX();
581 int lvIndex = (llp.cellY * cellCountX) + llp.cellX;
582 int rvIndex = (rlp.cellY * cellCountX) + rlp.cellX;
    [all...]
Workspace.java 293 int cellCountX = DEFAULT_CELL_COUNT_X;
312 cellCountX = 1;
313 while (CellLayout.widthInPortrait(res, cellCountX + 1) <= smallestScreenDim) {
314 cellCountX++;
331 cellCountX = a.getInt(R.styleable.Workspace_cellCountX, cellCountX);
338 LauncherModel.updateWorkspaceLayoutCells(cellCountX, cellCountY);
    [all...]

Completed in 33 milliseconds