I want to get the home wallpaper set and put it as my background for my activity. Is this possible ?
I searched on the internet with
WallpaperInfo v = w.getWallpaperInfo();
String name = v.getServiceName();
I have the service name (because the wallpaper is a live service) for example, I have com.android.wallpaper.grass.GrassWallpaper
...can I use this to start service into my activity?
If so, how?
It seems you even haven't tried to do anything... whatever, you can get the wallpaper by doing:
Then, you can use that drawable and set it as the background of your activity.