Loading packages/SystemUI/src/com/android/systemui/recent/RecentsActivity.java +3 −2 Original line number Diff line number Diff line Loading @@ -114,12 +114,13 @@ public class RecentsActivity extends Activity { } public static boolean forceOpaqueBackground(Context context) { return WallpaperManager.getInstance(context).getWallpaperInfo() != null; return WallpaperManager.getInstance(context).getWallpaperInfo() != null && !ActivityManager.isHighEndGfx(); } @Override public void onStart() { // Hide wallpaper if it's not a static image // Hide wallpaper if it's not a static image and device is low-end if (forceOpaqueBackground(this)) { updateWallpaperVisibility(false); } else { Loading Loading
packages/SystemUI/src/com/android/systemui/recent/RecentsActivity.java +3 −2 Original line number Diff line number Diff line Loading @@ -114,12 +114,13 @@ public class RecentsActivity extends Activity { } public static boolean forceOpaqueBackground(Context context) { return WallpaperManager.getInstance(context).getWallpaperInfo() != null; return WallpaperManager.getInstance(context).getWallpaperInfo() != null && !ActivityManager.isHighEndGfx(); } @Override public void onStart() { // Hide wallpaper if it's not a static image // Hide wallpaper if it's not a static image and device is low-end if (forceOpaqueBackground(this)) { updateWallpaperVisibility(false); } else { Loading