summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--res/values/strings.xml2
-rw-r--r--src/com/android/wallpaper/livepicker/LiveWallpaperListAdapter.java4
2 files changed, 2 insertions, 4 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml
index c90767f..7af69c7 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -25,7 +25,7 @@
<!-- Title for the screen that lets the user choose a live wallpaper to use
for the system. -->
<string name="live_wallpaper_picker_title">Select live wallpaper</string>
- <!-- Label for the live wallpaper picker. -->
+ <!-- Label for the live wallpaper picker [CHAR_LIMIT=40]-->
<string name="live_wallpaper_picker_label">Live Wallpapers</string>
<!-- Title for the screen that lets the user preview a live wallpaper. -->
<string name="live_wallpaper_preview_title">Live wallpaper preview</string>
diff --git a/src/com/android/wallpaper/livepicker/LiveWallpaperListAdapter.java b/src/com/android/wallpaper/livepicker/LiveWallpaperListAdapter.java
index 6c07dcd..b10de8b 100644
--- a/src/com/android/wallpaper/livepicker/LiveWallpaperListAdapter.java
+++ b/src/com/android/wallpaper/livepicker/LiveWallpaperListAdapter.java
@@ -231,10 +231,7 @@ public class LiveWallpaperListAdapter extends BaseAdapter implements ListAdapter
thumb = new BitmapDrawable(res, thumbnail);
}
-
- thumb.setDither(true);
wallpaper.thumbnail = thumb;
-
publishProgress(wallpaper);
}
@@ -244,6 +241,7 @@ public class LiveWallpaperListAdapter extends BaseAdapter implements ListAdapter
@Override
protected void onProgressUpdate(LiveWallpaperInfo...infos) {
for (LiveWallpaperInfo info : infos) {
+ info.thumbnail.setDither(true);
if (mWallpaperPosition < mWallpapers.size()) {
mWallpapers.set(mWallpaperPosition, info);
} else {