Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/
DBubbleTextView.java99 return bubbleTextView.mDotParams.scale;
104 bubbleTextView.mDotParams.scale = value;
144 protected DotRenderer.DrawParams mDotParams; field in BubbleTextView
211 mDotParams = new DotRenderer.DrawParams(); in BubbleTextView()
230 mDotParams.color = Color.TRANSPARENT; in reset()
232 mDotParams.scale = 0f; in reset()
326 mDotParams.color = IconPalette.getMutedColor(iconDrawable.getIconColor(), 0.54f); in applyIconAndLabel()
444 if (!mForceHideDot && (hasDot() || mDotParams.scale > 0)) { in drawDotIfNecessary()
445 getIconBounds(mDotParams.iconBounds); in drawDotIfNecessary()
446 Utilities.scaleRectAboutCenter(mDotParams.iconBounds, in drawDotIfNecessary()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/folder/
DFolderIcon.java129 private DotRenderer.DrawParams mDotParams; field in FolderIcon
167 mDotParams = new DotRenderer.DrawParams(); in init()
628 Rect iconBounds = mDotParams.iconBounds; in drawDot()
634 mDotParams.scale = Math.max(0, mDotScale - mBackground.getScaleProgress()); in drawDot()
635 mDotParams.color = mBackground.getDotColor(); in drawDot()
636 mDotRenderer.draw(canvas, mDotParams); in drawDot()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/
DPredictedAppIcon.java114 mPlateColor = ColorUtils.setAlphaComponent(mDotParams.color, 200); in applyFromWorkspaceItem()