Lines Matching refs:mWidthGap
45 private int mWidthGap; field in PagedViewCellLayout
71 mOriginalWidthGap = mOriginalHeightGap = mWidthGap = mHeightGap = -1; in PagedViewCellLayout()
76 mChildren.setGap(mWidthGap, mHeightGap); in PagedViewCellLayout()
189 mWidthGap = Math.min(mMaxGap, numWidthGaps > 0 ? (hFreeSpace / numWidthGaps) : 0); in onMeasure()
192 mChildren.setGap(mWidthGap, mHeightGap); in onMeasure()
194 mWidthGap = mOriginalWidthGap; in onMeasure()
203 ((mCellCountX - 1) * mWidthGap); in onMeasure()
237 return mCellCountX * mCellWidth + (mCellCountX - 1) * Math.max(0, mWidthGap); in getWidthBeforeFirstLayout()
286 mOriginalWidthGap = mWidthGap = widthGap; in setGap()
322 int n = Math.max(1, (availWidth + mWidthGap) / (mCellWidth + mWidthGap)); in estimateCellHSpan()
346 getPaddingLeft() + (x * mCellWidth) + (x * mWidthGap) + (mCellWidth / 2), in estimateCellPosition()