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

  /packages/apps/Launcher2/src/com/android/launcher2/
Hotseat.java 38 private int mCellCountY;
55 mCellCountY = a.getInt(R.styleable.Hotseat_cellCountY, -1);
88 if (mCellCountY < 0) mCellCountY = LauncherModel.getCellCountY();
90 mContent.setGridSize(mCellCountX, mCellCountY);
PagedViewGridLayout.java 32 private int mCellCountY;
38 mCellCountY = cellCountY;
46 return mCellCountY;
PagedViewCellLayout.java 38 private int mCellCountY;
70 mCellCountY = LauncherModel.getCellCountY();
124 lp.cellY >= 0 && (lp.cellY <= mCellCountY - 1)) {
128 if (lp.cellVSpan < 0) lp.cellVSpan = mCellCountY;
183 return mCellCountY;
198 int numHeightGaps = mCellCountY - 1;
204 int vFreeSpace = vSpace - (mCellCountY * mOriginalCellHeight);
220 newHeight = mPaddingTop + mPaddingBottom + (mCellCountY * mCellHeight) +
221 ((mCellCountY - 1) * mHeightGap);
245 if (mCellCountY > 0)
    [all...]
LauncherModel.java 123 private static int mCellCountY;
486 return mCellCountY;
495 mCellCountY = longAxisCellCount;
    [all...]
PagedView.java 126 protected int mCellCountY = 0;
    [all...]

Completed in 51 milliseconds