diff options
| author | 2012-10-25 12:19:18 -0700 | |
|---|---|---|
| committer | 2012-10-25 12:19:34 -0700 | |
| commit | 9023cf91018c75a179d04256fd4e306065528117 (patch) | |
| tree | f5a1ce99aa4a41be5e66c85bc9159c606e833959 | |
| parent | 3e297339f8b77d54f520d5471c90c9d04e78400e (diff) | |
| parent | 589a6af173c10738d2a83c69a9dda36579cc739d (diff) | |
Merge "Set wallpaper bitmap reference to null before reloading" into jb-mr1-dev
| -rw-r--r-- | core/res/res/drawable-xhdpi/default_wallpaper.jpg | bin | 87482 -> 93296 bytes | |||
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/ImageWallpaper.java | 1 |
2 files changed, 1 insertions, 0 deletions
diff --git a/core/res/res/drawable-xhdpi/default_wallpaper.jpg b/core/res/res/drawable-xhdpi/default_wallpaper.jpg Binary files differindex 5b8d1d59833e..da9fa91fae70 100644 --- a/core/res/res/drawable-xhdpi/default_wallpaper.jpg +++ b/core/res/res/drawable-xhdpi/default_wallpaper.jpg diff --git a/packages/SystemUI/src/com/android/systemui/ImageWallpaper.java b/packages/SystemUI/src/com/android/systemui/ImageWallpaper.java index 0a7dd7c76bf0..9da883a7f4c7 100644 --- a/packages/SystemUI/src/com/android/systemui/ImageWallpaper.java +++ b/packages/SystemUI/src/com/android/systemui/ImageWallpaper.java @@ -401,6 +401,7 @@ public class ImageWallpaper extends WallpaperService { Throwable exception = null; try { mWallpaperManager.forgetLoadedWallpaper(); // force reload + mBackground = null; mBackground = mWallpaperManager.getBitmap(); } catch (RuntimeException e) { exception = e; |