如何使用WallpaperManager将GIF设置为壁纸

时间:2018-03-15 06:54:09

标签: android live-wallpaper android-wallpaper

如何在Android中的WallpaperManager中设置壁纸中的GIF。

先谢谢。

1 个答案:

答案 0 :(得分:0)

我认为这会对你有帮助

Intent i = new Intent();

if(Build.VERSION.SDK_INT > 15){
i.setAction(WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER);

String p = HypercaneWallpaperService.class.getPackage().getName();
String c = HypercaneWallpaperService.class.getCanonicalName();        
i.putExtra(WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT, new ComponentName(p, c));
}
else{
i.setAction(WallpaperManager.ACTION_LIVE_WALLPAPER_CHOOSER);
}
getActivity().startActivityForResult(i, 0);