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.
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.
WallpaperManager wm=WallpaperManager.getInstance(this);
WallpaperInfo wi=wm.getWallpaperInfo();
Using these two classes you may get the information.