Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DTileLayout.java55 protected TextView mTempTextView; field in TileLayout
65 mTempTextView = new TextView(context); in TileLayout()
140 mTempTextView.dispatchConfigurationChanged(mContext.getResources().getConfiguration()); in updateResources()
227 FontSizeUtils.updateFontSize(mTempTextView, R.dimen.qs_tile_text_size); in estimateCellHeight()
229 mTempTextView.measure(unspecifiedSpec, unspecifiedSpec); in estimateCellHeight()
231 mEstimatedCellHeight = mTempTextView.getMeasuredHeight() * 2 + padding * 2; in estimateCellHeight()
H A DQuickQSPanel.java210 FontSizeUtils.updateFontSize(mTempTextView, R.dimen.qs_tile_text_size); in estimateCellHeight()
212 mTempTextView.measure(unspecifiedSpec, unspecifiedSpec); in estimateCellHeight()
215 mEstimatedCellHeight = mTempTextView.getMeasuredHeight() + padding * 2; in estimateCellHeight()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
H A DTileAdapter.java119 private TextView mTempTextView; field in TileAdapter
137 mTempTextView = new TextView(context); in TileAdapter()
882 FontSizeUtils.updateFontSize(mTempTextView, R.dimen.qs_tile_text_size); in reloadTileHeight()
884 mTempTextView.measure(unspecifiedSpec, unspecifiedSpec); in reloadTileHeight()
886 int estimatedTileViewHeight = mTempTextView.getMeasuredHeight() * 2 + padding * 2; in reloadTileHeight()