I had originally asked another question, but I think I found a work-around, which presents a new question hah!
I think my question is fairly basic, and I have searched for anything relevant.
When you are setting a live wallpaper in android, before you set the wallpaper, you have a chance to view the wallpaper without being in the background with all of your icons above it. A sort of "preview" of the wallpaper.
Is there a simple java code to force this activity, on a double tap for instance? I want the user to be able to bring the wallpaper to the front on demand basically.
Maybe this isn't possible, but I assume it is as you can do it before you actually set the wallpaper.
Any help would be greatly appreciated.
Thanks,
Jack
Edit-
I should note I think I found a similar question but the English is so bad I can't tell:
How to make directly show live wallpaper in main activity?
public void StartActivity() {
WallpaperInfo localWallpaperInfo = ((WallpaperManager) getSystemService("wallpaper")).getWallpaperInfo();
if (localWallpaperInfo != null) {
String str1 = localWallpaperInfo.getSettingsActivity();
if (str1 != null) {
String str2 = localWallpaperInfo.getPackageName();
Intent localIntent1 = new Intent();
ComponentName localComponentName = new ComponentName(str2, str1);
localIntent1.setComponent(localComponentName);
localIntent1.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(localIntent1);
}
}