1

Our android devices Home Screen contains Wallpaper or Live-Wallpaper. How do check through programmatically the Wallpaper is Live-Wallpaper or not.

Is it possible?

Thanks.

Dinesh Lingam
  • 293
  • 3
  • 6
  • 13

1 Answers1

-1
WallpaperManager wm=WallpaperManager.getInstance(this);

WallpaperInfo wi=wm.getWallpaperInfo();

Using these two classes you may get the information.

Pablo Claus
  • 5,886
  • 3
  • 29
  • 38
  • Can you explain in detailed... How do check? – Dinesh Lingam Aug 01 '12 at 12:07
  • i show this classes first time so i dont have much idea... but using WallpaperInfo class...there is lots of method of this class... just try and print it one by one so we can get some data about the wallpaper... – Hardikgiri Goswami Aug 01 '12 at 12:15
  • And can I somehow change the wallpaper programmatically? Can you please check this one? http://stackoverflow.com/questions/13683464/set-live-wallpaper-programmatically-on-rooted-device-android – Naskov Dec 06 '12 at 12:35