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

  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewCellLayout.java 46 private int mWidthGap;
72 mOriginalHeightGap = mOriginalHeightGap = mWidthGap = mHeightGap = -1;
77 mChildren.setGap(mWidthGap, mHeightGap);
200 mWidthGap = Math.min(mMaxGap, numWidthGaps > 0 ? (hFreeSpace / numWidthGaps) : 0);
203 mChildren.setGap(mWidthGap, mHeightGap);
205 mWidthGap = mOriginalWidthGap;
214 ((mCellCountX - 1) * mWidthGap);
248 return mCellCountX * mCellWidth + (mCellCountX - 1) * Math.max(0, mWidthGap);
297 mWidthGap = widthGap;
334 int n = Math.max(1, (availWidth + mWidthGap) / (mCellWidth + mWidthGap))
    [all...]
CellLayoutChildren.java 37 private int mWidthGap;
52 mWidthGap = widthGap;
83 lp.setup(mCellWidth, mCellHeight, mWidthGap, mHeightGap);
91 lp.setup(cellWidth, cellHeight, mWidthGap, mHeightGap);
PagedViewCellLayoutChildren.java 36 private int mWidthGap;
56 mWidthGap = widthGap;
94 lp.setup(mCellWidth, mCellHeight, mWidthGap, mHeightGap,
CellLayout.java 72 private int mWidthGap;
171 mWidthGap = mOriginalWidthGap = a.getDimensionPixelSize(R.styleable.CellLayout_widthGap, 0);
284 mChildren.setCellDimensions(mCellWidth, mCellHeight, mWidthGap, mHeightGap);
512 int x = getPaddingLeft() - (mWidthGap / 2) - (width / 2);
528 x += mCellWidth + mWidthGap;
    [all...]

Completed in 517 milliseconds