Reputation: 3269
I am trying to change wallpaper using a widget. I use the code below to achieve that: But there is an certain delay every time the code is executed.
Is there any way to avoid this delay.
...
WallpaperManager wallpaperManager = WallpaperManager.getInstance (context);
Bitmap bitmap = BitmapFactory.decodeStream (new FileInputStream (file));
//here @file is fetched from a phone storage
wallpaperManager.setBitmap (bitmap);
...
Upvotes: 1
Views: 826
Reputation: 7749
I see four options which might help here:
Upvotes: 1