Home
last modified time | relevance | path

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

/packages/apps/WallpaperPicker2/src/com/android/wallpaper/model/
DWallpaperInfo.java48 private int mPlaceholderColor = Color.TRANSPARENT; field in WallpaperInfo
53 mPlaceholderColor = in.readInt(); in WallpaperInfo()
58 parcel.writeInt(mPlaceholderColor); in writeToParcel()
215 if (mPlaceholderColor != Color.TRANSPARENT) { in computePlaceholderColor()
216 return CompletableFuture.completedFuture(mPlaceholderColor); in computePlaceholderColor()
221 if (mPlaceholderColor != Color.TRANSPARENT) { in computePlaceholderColor()
222 return mPlaceholderColor; in computePlaceholderColor()
229 mPlaceholderColor = WallpaperColors.fromBitmap( in computePlaceholderColor() field in WallpaperInfo
231 return mPlaceholderColor; in computePlaceholderColor()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/
DWallpaperSurfaceCallback.java66 private final Future<Integer> mPlaceholderColor; field in WallpaperSurfaceCallback
91 mPlaceholderColor = placeholderColor; in WallpaperSurfaceCallback()
159 if (mPlaceholderColor != null && mPlaceholderColor.isDone()) { in setupSurfaceWallpaper()
161 placeholder = mPlaceholderColor.get(); in setupSurfaceWallpaper()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DTiledScreenNail.java68 private static int mPlaceholderColor = 0xFF222222; field in TiledScreenNail
72 mPlaceholderColor = color; in setPlaceholderColor()
161 canvas.fillRect(x, y, width, height, mPlaceholderColor); in draw()
171 mTexture.drawMixed(canvas, mPlaceholderColor, getRatio(), x, y, in draw()
182 mPlaceholderColor); in draw()
DAlbumSlotRenderer.java37 private final int mPlaceholderColor; field in AlbumSlotRenderer
59 mPlaceholderColor = placeholderColor; in AlbumSlotRenderer()
61 mWaitLoadingTexture = new ColorTexture(mPlaceholderColor); in AlbumSlotRenderer()
117 content = new FadeInTexture(mPlaceholderColor, entry.bitmapTexture); in renderSlot()
DAlbumSetSlotRenderer.java37 private final int mPlaceholderColor; field in AlbumSetSlotRenderer
76 mPlaceholderColor = placeholderColor; in AlbumSetSlotRenderer()
78 mWaitLoadingTexture = new ColorTexture(mPlaceholderColor); in AlbumSetSlotRenderer()
178 content = new FadeInTexture(mPlaceholderColor, entry.bitmapTexture); in renderContent()
DPhotoView.java49 private final int mPlaceholderColor; field in PhotoView
249 mPlaceholderColor = mContext.getResources().getColor( in PhotoView()
915 canvas.fillRect(r.left, r.top, r.width(), r.height(), mPlaceholderColor); in drawPlaceHolder()