Android Question Live Wallpaper with Web Content!?

Fox

Active Member
Licensed User
Longtime User
Hey guys i have seen much libraries and tutorials about Livewallpapers.

My Question is following is it possible to create an Live Wallpaper with Basic for android that shows the Content from an WebPage (Local)?
 

walterf25

Expert
Licensed User
Longtime User
Hey guys i have seen much libraries and tutorials about Livewallpapers.

My Question is following is it possible to create an Live Wallpaper with Basic for android that shows the Content from an WebPage (Local)?
I'm sure it can be done, although i have never tired it.

Walter
 
  • Like
Reactions: Fox
Upvote 0

MarcTG

Active Member
Licensed User
Longtime User
Hey guys i have seen much libraries and tutorials about Livewallpapers.

My Question is following is it possible to create an Live Wallpaper with Basic for android that shows the Content from an WebPage (Local)?

Find a way to capture the website content, save it in a certain format on the device and then display it. For example if you save it as an image file, you can easily load it as scrolling background in a live wallpaper.
If you are using a libgdx live wallpaper, you can control background image scrolling with:

B4X:
Sub LG_OffsetChange(X_Offset As Float, Y_Offset As Float, X_OffsetStep As Float, Y_OffsetStep As Float, X_PixelOffset As Int, Y_PixelOffset As Int)

end sub
 
  • Like
Reactions: Fox
Upvote 0
Top