In Android there is a very convenient way of getting the user to choose and set a live wallpaper.
Intent intent = new Intent(WallpaperManager.ACTION_LIVE_WALLPAPER_CHOOSER);
startActivity(intent);
Is there a similar way for user to choose and set a wallpaper instead (or better yet, allow them to choose wallpaper/live wallpaper/gallery)?
Thanks!