Merge "Check device for config_enableWallpaperService before calling service."
This commit is contained in:
committed by
Android (Google) Code Review
commit
def55bf102
@@ -59,7 +59,8 @@ public class WallpaperSuggestionActivity extends Activity {
|
||||
@VisibleForTesting
|
||||
public static boolean isSuggestionComplete(Context context) {
|
||||
final WallpaperManagerWrapper manager = new WallpaperManagerWrapper(context);
|
||||
return manager.getWallpaperId(WallpaperManager.FLAG_SYSTEM) > 0;
|
||||
return manager.isWallpaperServiceEnabled() ? manager.getWallpaperId(
|
||||
WallpaperManager.FLAG_SYSTEM) > 0 : false;
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -22,12 +22,23 @@ import android.content.Context;
|
||||
public class WallpaperManagerWrapper {
|
||||
|
||||
private final WallpaperManager mWallpaperManager;
|
||||
private final boolean mWallpaperServiceEnabled;
|
||||
|
||||
public WallpaperManagerWrapper(Context context) {
|
||||
mWallpaperManager = (WallpaperManager) context.getSystemService(Context.WALLPAPER_SERVICE);
|
||||
mWallpaperServiceEnabled = context.getResources().getBoolean(
|
||||
com.android.internal.R.bool.config_enableWallpaperService);
|
||||
mWallpaperManager = mWallpaperServiceEnabled ? (WallpaperManager) context.getSystemService(
|
||||
Context.WALLPAPER_SERVICE) : null;
|
||||
}
|
||||
|
||||
public boolean isWallpaperServiceEnabled() {
|
||||
return mWallpaperServiceEnabled;
|
||||
}
|
||||
|
||||
public int getWallpaperId(int which) {
|
||||
if (!mWallpaperServiceEnabled) {
|
||||
throw new RuntimeException("This device does not have wallpaper service enabled.");
|
||||
}
|
||||
return mWallpaperManager.getWallpaperId(which);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user