HomeSort by relevance Sort by last modified time
    Searched defs:cellCountX (Results 1 - 3 of 3) 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 294 int cellCountX = DEFAULT_CELL_COUNT_X;
313 cellCountX = 1;
314 while (CellLayout.widthInPortrait(res, cellCountX + 1) <= minDims.x) {
315 cellCountX++;
332 cellCountX = a.getInt(R.styleable.Workspace_cellCountX, cellCountX);
339 LauncherModel.updateWorkspaceLayoutCells(cellCountX, cellCountY);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
FocusHelper.java 143 final int cellCountX = parent.getCellCountX();
145 final int x = widgetIndex % cellCountX;
146 final int y = widgetIndex / cellCountX;
194 int newWidgetIndex = ((y - 1) * cellCountX) + x;
207 int newWidgetIndex = Math.min(widgetCount - 1, ((y + 1) * cellCountX) + x);
569 final int cellCountX = layout.getCountX();
580 int lvIndex = (llp.cellY * cellCountX) + llp.cellX;
581 int rvIndex = (rlp.cellY * cellCountX) + rlp.cellX;
    [all...]

Completed in 223 milliseconds