HomeSort by relevance Sort by last modified time
    Searched refs:mCellCountX (Results 1 - 6 of 6) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewGridLayout.java 31 private int mCellCountX;
37 mCellCountX = cellCountX;
42 return mCellCountX;
PagedViewCellLayout.java 37 private int mCellCountX;
69 mCellCountX = LauncherModel.getCellCountX();
123 if (lp.cellX >= 0 && lp.cellX <= (mCellCountX - 1) &&
127 if (lp.cellHSpan < 0) lp.cellHSpan = mCellCountX;
179 return mCellCountX;
197 int numWidthGaps = mCellCountX - 1;
203 int hFreeSpace = hSpace - (mCellCountX * mOriginalCellWidth);
218 newWidth = mPaddingLeft + mPaddingRight + (mCellCountX * mCellWidth) +
219 ((mCellCountX - 1) * mWidthGap);
252 if (mCellCountX > 0)
    [all...]
Hotseat.java 37 private int mCellCountX;
54 mCellCountX = a.getInt(R.styleable.Hotseat_cellCountX, -1);
87 if (mCellCountX < 0) mCellCountX = LauncherModel.getCellCountX();
90 mContent.setGridSize(mCellCountX, mCellCountY);
AppsCustomizePagedView.java 297 int numItemsPerPage = mCellCountX * mCellCountY;
330 int numItemsPerPage = mCellCountX * mCellCountY;
357 mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
385 mCellCountX = mWidgetSpacingLayout.getCellCountX();
731 layout.setCellCount(mCellCountX, mCellCountY);
750 int numCells = mCellCountX * mCellCountY;
769 int x = index % mCellCountX;
770 int y = index / mCellCountX;
    [all...]
LauncherModel.java 122 private static int mCellCountX;
482 return mCellCountX;
494 mCellCountX = shortAxisCellCount;
    [all...]
PagedView.java 125 protected int mCellCountX = 0;
    [all...]

Completed in 342 milliseconds