Questions tagged [wallpaper]

Wallpaper is the background image on one's "desktop" or "home screen."

Wallpapers vary from system to system both in function and nomenclature. In Mac OS X, the wallpaper is called the "desktop picture." It is a static image or series of images that the operating system cycles through. Its function is purely decorative. In addition to traditional (static) wallpapers, Android (v2.1+) offers "live wallpapers." Live wallpapers are similar to normal applications, though slightly different (they are services rather than activities, so their capabilities are not quite the same). Live wallpapers extend the traditional wallpaper concept by allowing for interactivity, animation, and access to system functions. One of the challenges facing the live wallpaper developer is that the wallpaper is often overlaid with icons, widgets, and the like, beyond the programmer's ability to control or often even to detect.

763 questions
0
votes
0 answers

How to get the current, undistorted, wallpaper in Android?

I need to have access to the current cropped wallpaper (as a drawable or a bitmap) in order to blur some part of it and set these blurred parts as backgrounds for different views. In Android, it is possible to get the current wallpaper as a drawable…
0
votes
0 answers

Can i show my app view at main activity as live wallpaper?

I am making a clock application, and I want the appearance of the application in the main activity to appear as a live wallpaper and the application can run when Android starts and runs on background. Can i di that things? I just finished making the…
0
votes
0 answers

How to detect touch outside of our app in flutter

I want to detect the touch of home screen(where wallpaper is set) Want to create a live wallpaper app for that i need to detect home screen touch. On tapping outside the i get the gesture and apply onpressed function as well
ali ahmed
  • 1
  • 1
0
votes
1 answer

iPhone - Getting the lock screen background image

Into my app, I need to display the lock screen background image chosen by the user. How can I get that image to display it without using private API ?
Oliver
  • 23,072
  • 33
  • 138
  • 230
0
votes
0 answers

Google New-tab Custom Wallpaper with Audio and Cursor Responsive

Is it possible for a google extension to change the wallpaper of a new tab, AND the wallpaper reacts when you have different amplitude of audio in the background, AND cursor tracking? Because I'm not aware if a Google Extension is able to track…
0
votes
1 answer

Blend an image into another with Python

I am trying to blend an image into another with python to set as your wallpaper for every frame of the fading animation. I've look on several fourms and haven't found anyone trying to do the same thing and I have never messed with photo editing in…
Turnrp
  • 5
  • 1
0
votes
0 answers

Is it possible to set an image as a wallpaper programatically in iOS 16?

As you know, Apple announced we can add a new wallpaper for your Lock Screen or Home Screen with iOS 16. Apple Support page for changing the wallpaper on iPhone here: Change the wallpaper on your iPhone In Apple Documents, I did not find any useful…
yilmazburk
  • 907
  • 9
  • 17
0
votes
0 answers

32 images saved only at a time when i use the crop option for the image and after deleting 1 image the cropping again works fine for again 32 images

When i use the cropping action on the image in my app it firstly saves it in the gallery at the first instance when i only touch the crop option.After touching the crop option for 32 times and successfully saving image in gallery it starts going…
0
votes
1 answer

How to add Icon for your Live Wallpaper

My live wallpaper has an Icon, it shows before you install it, but after you install it and you go to Wallpaper>Live Wallpaper, there is no icon in it, it's just an empty gray image. My live wallpaper has an Icon, it shows before you install it,…
user858975
  • 233
  • 1
  • 7
  • 17
0
votes
0 answers

Preview live wallpaper preview in main activity background

I am quite new to android and java, and I would like to have a bit of help from you to figure things out. I have been working on a live wallpaper app lately, here is what I achieved and my blocking points: I use the WallpaperService to create my…
Ugo
  • 1
0
votes
0 answers

How to set Windows background image using Python

So I want to set the Windows background image using Python. I have already tried: import ctypes ctypes.windll.user32.SystemParametersInfoW(20, 0, "absolute path" , 0) But it just turns the background to black. If anyone needs more information, just…
0
votes
1 answer

How do I put an ads banner in the preview screen for a live wallpaper?

As in the Fireflies live wallpaper (http://www.livewallpapers.org/fireflies-free-1543/), I don't know how to put an ads banner in the Preview screen (not Settings screen). Additional info: when I install the Fireflies wallpaper on my HTC which is on…
Tran
  • 135
  • 1
  • 2
  • 7
0
votes
0 answers

Change Windows Lockscreen with Powershell: Daily Wallpaper in 4k UHD with Bing Daily Wallpaper API (Powershell)

I wanted a program that changes my Wallpaper daily, but the "Daily Desktop Wallpaper"-App only can do Full-HD and the official program from Microsoft is not only Adware, but displays an ugly watermark in the bottom right corner and can't change the…
MySurmise
  • 146
  • 11
0
votes
0 answers

How do companies like Google or Microsoft make theme-changing wallpapers?

I was messing around with my ChromeOS wallpapers then I wondered... How do they make it change with your theme? Like the default Windows 11 wallpaper or the ChromeOS Radiance and Element collections?
0
votes
2 answers

Problem with executor service in Eclipse for android app

Basically, i'm developing an OpenGL live wallpaper for android phones. This is my wallpaper service class. public class Wallpaper extends GLWallpaperService { private class MyEngine extends Engine { private GLRenderer glRenderer; private…
waikin
  • 1