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

  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewCellLayout.java 46 private int mHeightGap;
71 mOriginalWidthGap = mOriginalHeightGap = mWidthGap = mHeightGap = -1;
76 mChildren.setGap(mWidthGap, mHeightGap);
190 mHeightGap = Math.min(mMaxGap,numHeightGaps > 0 ? (vFreeSpace / numHeightGaps) : 0);
192 mChildren.setGap(mWidthGap, mHeightGap);
195 mHeightGap = mOriginalHeightGap;
205 ((mCellCountY - 1) * mHeightGap);
230 return mCellCountY * mCellHeight + (mCellCountY - 1) * Math.max(0, mHeightGap);
287 mOriginalHeightGap = mHeightGap = heightGap;
337 int n = Math.max(1, (availHeight + mHeightGap) / (mCellHeight + mHeightGap))
    [all...]
PagedViewCellLayoutChildren.java 37 private int mHeightGap;
57 mHeightGap = heightGap;
94 lp.setup(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
ShortcutAndWidgetContainer.java 40 private int mHeightGap;
56 mHeightGap = heightGap;
105 lp.setup(mCellWidth, mCellHeight, mWidthGap, mHeightGap, invertLayoutHorizontally(),
119 lp.setup(cellWidth, cellHeight, mWidthGap, mHeightGap, invertLayoutHorizontally(), mCountX);
CellLayout.java 74 private int mHeightGap;
192 mHeightGap = mOriginalHeightGap = a.getDimensionPixelSize(R.styleable.CellLayout_heightGap, 0);
286 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
336 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
811 result[1] = (y - vStartPadding) / (mCellHeight + mHeightGap);
845 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
ShortcutAndWidgetContainer.java 41 private int mHeightGap;
60 mHeightGap = heightGap;
95 lp.setup(mCellWidth, mCellHeight, mWidthGap, mHeightGap, invertLayoutHorizontally(),
126 lp.setup(cellWidth, cellHeight, mWidthGap, mHeightGap, invertLayoutHorizontally(),
CellLayout.java 95 @Thunk int mHeightGap;
206 mHeightGap = mOriginalHeightGap = 0;
290 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
376 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
386 mShortcutsAndWidgets.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
721 result[1] = (y - vStartPadding) / (mCellHeight + mHeightGap);
755 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap);
783 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap) +
784 (spanY * mCellHeight + (spanY - 1) * mHeightGap) / 2;
798 final int top = vStartPadding + cellY * (mCellHeight + mHeightGap);
    [all...]

Completed in 324 milliseconds