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/
PagedViewGridLayout.java 32 private int mCellCountY;
38 mCellCountY = cellCountY;
46 return mCellCountY;
Hotseat.java 39 private int mCellCountY;
60 mCellCountY = a.getInt(R.styleable.Hotseat_cellCountY, -1);
100 if (mCellCountY < 0) mCellCountY = LauncherModel.getCellCountY();
102 mContent.setGridSize(mCellCountX, mCellCountY);
PagedViewCellLayout.java 38 private int mCellCountY;
70 mCellCountY = LauncherModel.getCellCountY();
108 lp.cellY >= 0 && (lp.cellY <= mCellCountY - 1)) {
112 if (lp.cellVSpan < 0) lp.cellVSpan = mCellCountY;
167 return mCellCountY;
182 int numHeightGaps = mCellCountY - 1;
188 int vFreeSpace = vSpace - (mCellCountY * mOriginalCellHeight);
204 newHeight = getPaddingTop() + getPaddingBottom() + (mCellCountY * mCellHeight) +
205 ((mCellCountY - 1) * mHeightGap);
229 if (mCellCountY > 0)
    [all...]
LauncherModel.java 149 private static int mCellCountY;
691 return mCellCountY;
700 mCellCountY = longAxisCellCount;
    [all...]
PagedView.java 132 protected int mCellCountY = 0;
    [all...]

Completed in 94 milliseconds