Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/folder/
DPreviewBackground.java118 public Integer get(PreviewBackground previewBackground) {
119 return previewBackground.mStrokeAlpha;
123 public void set(PreviewBackground previewBackground, Integer alpha) {
124 previewBackground.mStrokeAlpha = alpha;
125 previewBackground.invalidate();
132 public Integer get(PreviewBackground previewBackground) {
133 return previewBackground.mShadowAlpha;
137 public void set(PreviewBackground previewBackground, Integer alpha) {
138 previewBackground.mShadowAlpha = alpha;
139 previewBackground.invalidate();
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
DTaskbarView.java653 PreviewBackground previewBackground = mLeaveBehindFolderIcon.getFolderBackground(); in onDraw() local
654 previewBackground.drawLeaveBehind(canvas, mFolderLeaveBehindColor); in onDraw()