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
3
votes
1 answer

How to make a background image similar to scrolling wallpaper in Android?

I use a navigation-based iOS application. I want to make a background similar to desktop wallpaper in Android. So when I go to another View the current View and it's content goes outside of the screen but the background image slightly moves…
Gargolev
  • 43
  • 7
3
votes
0 answers

Modify current wallpaper

Is it possible to modify the current wallaper via code? I'm getting the current wallpaper trough WallpaperManager wpm=WallpaperManager.getInstance(myContext); Drawable draw=wpm.getDrawable(); then I try to desaturate it with ColorMatrix matrix =…
Va Le
  • 31
  • 1
3
votes
1 answer

How to remove window background in Tkinter Python

I have seen many other threads about tkinter and having a transparent background on an image, and that's not exactly what I am looking for, so I decided to post my own question. I am making a clock that will look like its from the wallpaper, but I…
3
votes
1 answer

Is there a universal way to set a wallpaper on Linux?

I am building a program that periodically changes your wallpaper with one taken from reddit. It currently supports windows, but I would like it to work also on Linux. The program is developed in Java. The problem is that each DE has its unique way…
Mamiglia
  • 108
  • 7
3
votes
1 answer

Setting Android HomeScreen wallpaper only

How can I set the wallpapers of android programmatically for the options below: Set as HomeScreen Only Set as Lockscreen only Set as Homescreen and Lockscreen Below is what I have So far but I can't figure out how I can set it for homescreen…
3
votes
1 answer

How to set lock screen wallpaper on devices prior to API 24 in Android?

I have an image and want to set it as the lock screen wallpaper. For devices with API 24 and higher, we can do this with wallpaperManager.setBitmap(bitmap,null,true,WallpaperManager.FLAG_LOCK) But I want to do it on devices prior to API 24 as many…
Hamza Khan
  • 104
  • 1
  • 9
3
votes
1 answer

Android: restart or refresh a LiveWallpaper after preference change

Is it posible to restart a wallpaper after a preference is changed? I'm thinking I can use this to see the event. But I'm not sure how to update the wallpaper afterwards, if the wallpaper is already running. public void…
user401183
  • 2,530
  • 4
  • 27
  • 25
3
votes
1 answer

How to show a website as a wallpaper in Windows 10?

is there a way to show a webpage on the windows 10 desktop (as a wallpaper, not in the browser)? I'd like to show an URL to google calendar on the background. I have no idea to get this done. (Is it configurable? Is there a solution in Python 3, c#…
merlinuwe
  • 191
  • 3
  • 10
3
votes
0 answers

Get Lock screen Wallpaper android

I want to get the current wallpaper drawables of both lockScreen & homescreen but i can't figure out how to get LockScreen Wallpaper. I have used this Code to get HomeScreen Wallpaper Drawable & its Working Fine WallpaperManager wallpaperManager =…
3
votes
1 answer

Android's Wallpapermanager in Flutter?

I am writing an app for Android in Flutter that sets the user's wallpaper. I am having trouble finding how to do this, as Flutter is made to compile to both iOS and Android apps, and iOS doesn't allow apps to set a wallpaper. In Android, one can use…
Robbert
  • 827
  • 1
  • 6
  • 8
3
votes
1 answer

Pcmanfm set wallpaper fails on Raspbian stretch in cron

I am running a nearly fresh image of Raspbian Stretch 4.9 with a desktop and have a program which creates a new image for the computer background every few minutes. I am trying to create a cron job to properly update the background using pcmanfm…
3
votes
1 answer

Persistently change Windows desktop wallpaper using python

I use the solution provided in this post to change the Windows desktop wallpaper from Python In particular here is the code sample import ctypes import os image_file = "myimage.jpg" print("Setting the wallpaper") SPI_SETDESKWALLPAPER = 20…
robertspierre
  • 3,218
  • 2
  • 31
  • 46
3
votes
1 answer

How to set wallpapers use app-services Wallpaper and Contact photo?

I use this code below, but it works partly - set wallpapers only on my real device api23 nexus5, in another devices in no way not setting. Also cant set wallpapers to icon of contact. My actions: tap button set wallpaper in the opened window…
nicolas asinovich
  • 3,201
  • 3
  • 27
  • 37
3
votes
0 answers

How to make a smooth live wallpaper?

I intend to create live wallpapers for iphones (iOS 9 and later) programmatically. I used the LoveLiver project to create some live wallpapers. I also tried the free app Live Edit on App Store to create some. I even created some myself (by taking…
user3286500
  • 57
  • 1
  • 5
3
votes
2 answers

change wallpaper via iphone app

Does apple allows me to change the wallpaper of the iphone from my application?
satishdas
  • 65
  • 3
  • 10