Home | History | Annotate | Download | only in dynamicui

Lines Matching refs:wallpaper

45  * Extracts colors from the wallpaper, and saves results to {@link LauncherProvider}.
52 /** The fraction of the wallpaper to extract colors for use on the hotseat. */
92 // since they only consider part of the wallpaper.
104 // Save the extracted colors and wallpaper id to LauncherProvider.
148 Bitmap wallpaper = ((BitmapDrawable) wallpaperManager.getDrawable()).getBitmap();
149 return Palette.from(wallpaper)
150 .setRegion(0, (int) (wallpaper.getHeight() * (1f - HOTSEAT_FRACTION)),
151 wallpaper.getWidth(), wallpaper.getHeight())
179 Bitmap wallpaper = ((BitmapDrawable) wallpaperManager.getDrawable()).getBitmap();
180 return Palette.from(wallpaper)
181 .setRegion(0, 0, wallpaper.getWidth(), statusBarHeight)
201 Bitmap wallpaper = ((BitmapDrawable) wallpaperManager.getDrawable()).getBitmap();
202 return Palette.from(wallpaper).clearFilters().generate();