Is it possible to set a live wallpaper using some lines of code. For example, i want to tell my users that a live wallpaper is available "click here to set it".

link|improve this question

65% accept rate
I don't think that is possible, you can launch the wallpaper-selector but you can't set the Wallpaper directly. – theomega Jan 28 '11 at 18:11
So i guess my next question is .. how to launch it using code? – prashant Jan 28 '11 at 18:30
It seems that it is possible to set the wallpaper directly: stackoverflow.com/questions/2205092/… – mahboudz Sep 28 '11 at 19:27
1  
@mahboudz that's only possible for static wallpapers (images) not livewallpapers. – stealthcopter Nov 13 '11 at 21:19
feedback

1 Answer

up vote 5 down vote accepted

Here's how to start the wallpaper chooser, from which the user can select your wallpaper. The toast is just a way to explain to the user what's going on.

Toast toast = Toast.makeText(this, "Choose '<WALLPAPER NAME>' from the list to start the Live Wallpaper.",Toast.LENGTH_LONG);
toast.show();

Intent intent = new Intent();
intent.setAction(WallpaperManager.ACTION_LIVE_WALLPAPER_CHOOSER);
startActivity(intent);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.