我正在尝试使用小部件更改墙纸。我使用下面的代码来实现:但是每次执行代码时都会有一定的延迟。
有什么办法可以避免这种延迟。
...
WallpaperManager wallpaperManager = WallpaperManager.getInstance (context);
Bitmap bitmap = BitmapFactory.decodeStream (new FileInputStream (file));
//here @file is fetched from a phone storage
wallpaperManager.setBitmap (bitmap);
...