Home
last modified time | relevance | path

Searched refs:mCellMarginVertical (Results 1 – 1 of 1) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DTileLayout.java39 protected int mCellMarginVertical; field in TileLayout
134 mCellMarginVertical= res.getDimensionPixelSize(R.dimen.qs_tile_margin_vertical); in updateResources()
185 int height = (mCellHeight + mCellMarginVertical) * mRows; in onMeasure()
186 height -= mCellMarginVertical; in onMeasure()
202 final int availableHeight = allowedHeight + mCellMarginVertical; in updateMaxRows()
204 mRows = availableHeight / (getCellHeight() + mCellMarginVertical); in updateMaxRows()
285 return (int) (row * (mCellHeight * scale + mCellMarginVertical)); in getRowTop()