Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/
DBubbleTextView.java80 return bubbleTextView.mDotParams.scale;
85 bubbleTextView.mDotParams.scale = value;
127 private DotRenderer.DrawParams mDotParams; field in BubbleTextView
195 mDotParams = new DotRenderer.DrawParams(); in BubbleTextView()
214 mDotParams.color = Color.TRANSPARENT; in reset()
216 mDotParams.scale = 0f; in reset()
292 mDotParams.color = IconPalette.getMutedColor(info.iconColor, 0.54f); in applyIconAndLabel()
425 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) { in drawDotIfNecessary()
426 getIconBounds(mDotParams.iconBounds); in drawDotIfNecessary()
427 … Utilities.scaleRectAboutCenter(mDotParams.iconBounds, IconShape.getNormalizationScale()); in drawDotIfNecessary()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderIcon.java119 private DotRenderer.DrawParams mDotParams; field in FolderIcon
153 mDotParams = new DotRenderer.DrawParams(); in init()
531 Rect iconBounds = mDotParams.iconBounds; in drawDot()
538 mDotParams.scale = Math.max(0, mDotScale - mBackground.getScaleProgress()); in drawDot()
539 mDotParams.color = mBackground.getDotColor(); in drawDot()
540 mDotRenderer.draw(canvas, mDotParams); in drawDot()