Is there a way to automatically (randomly) change the wallpaper from an online source or from a collection of…
Is there a way to automatically (randomly) change the wallpaper from an online source or from a collection of wallpapers on the phone? I searched the community but couldn’t find anything.. Nothing in scripts either….This is perhaps the only feature I miss from some of the other (otherwise inferior) launchers. Thanks!
]]>
< ![CDATA[
(not tested)
Start by loading an image, from a file for instance:
var img = LL.createImage(“/path/to/some/image’);
Retrieve the android wallpaper manager:
LL.bindClass(‘android.app.WallpaperManager’);
var wpm = WallpaperManager.getInstance(LL.getContext());
Set the wallpaper:
wpm.setBitmap(img.getBitmap());
This is for the static system wallpaper. LWP cannot be changed by third party apps. You may also use large background items image for wallpaper too.
]]>
< ![CDATA[
I use IF app for that
]]>
< ![CDATA[
I use Tasker for change random wall from phone.
]]>
< ![CDATA[
Pierre Hébert thank you for your reply! But…. I’m obviously way too behind in my scripting knowledge. No idea where to even begin with that…
]]>