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 296 int cellCountX = DEFAULT_CELL_COUNT_X;
315 cellCountX = 1;
316 while (CellLayout.widthInPortrait(res, cellCountX + 1) <= minDims.x) {
317 cellCountX++;
334 cellCountX = a.getInt(R.styleable.Workspace_cellCountX, cellCountX);
341 LauncherModel.updateWorkspaceLayoutCells(cellCountX, cellCountY);
    [all...]

Completed in 51 milliseconds