Home | History | Annotate | Download | only in home

Lines Matching refs:wallpaper

195      * only a wallpaper intent receiver to let other applications change the
196 * wallpaper.
236 * When no wallpaper was manually set, a default wallpaper is used instead.
240 Drawable wallpaper = peekWallpaper();
241 if (wallpaper == null) {
245 Log.e(LOG_TAG, "Failed to clear wallpaper " + e);
248 getWindow().setBackgroundDrawable(new ClippedDrawable(wallpaper));
582 * Receives intents from other applications to change the wallpaper.
733 * wallpaper has the same size as the screen. However, the wallpaper might be larger
736 * This drawable simply draws another wallpaper but makes sure it is not stretched
737 * by always giving it its intrinsic dimensions. If the wallpaper is larger than the
743 public ClippedDrawable(Drawable wallpaper) {
744 mWallpaper = wallpaper;
750 // Ensure the wallpaper is as large as it really is, to avoid stretching it