0

I am building an app that makes mass changes to Android phone configuration and saves the current settings. I am trying to find a way to read what is the current wallpaper in use; I'd like to replace it with no wallpaper ( wallpaperManager.clear(); ) and then restore the previous wallpaper.

Yossi
  • 1,226
  • 1
  • 16
  • 31

1 Answers1

0

you'll be looking at WallpaperManager.getWallpaperInfo()

Lie Ryan
  • 62,238
  • 13
  • 100
  • 144
  • Thanks Lie ; This method will only return info for live wallpapers. There is no clear way to get the current wallpaper as set by a call to WallpaperManager.setResource(int resid) nor is there a way that I know of to set a live wallpaper from an App. Any ideas? – Yossi Dec 21 '10 at 05:49