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
0 answers

How to use private APIs to set iOS wallpapers directly. ( Need help updating code to iOS 10, it's already working in iOS 9.3 )

Yes, I'm aware that Apple will reject any code using private APIs. This is for a personal project only. The code has been working fine on an iPhone running iOS 9.3. iOS 10 breaks it. It compiles, but does not set the wallpaper anymore. Perhaps some…
Eddie
  • 313
  • 1
  • 2
  • 8
3
votes
1 answer

launch browser intent in live wallpaper

I am trying to load BROWSER VIEW intent in android within onTouchEvent. Basically I have created a live wallpaper and if I click on it then I want to open BROWSER VIEW intent with a specified uri. I have tried following code inside onTouchEvent Uri…
Hunt
  • 8,215
  • 28
  • 116
  • 256
3
votes
2 answers

Set multiple wallpapers?

As you know, since a few versions, Windows allows you to set multiple wallpapers that rotate automatically. I'm creating a program to sync my wallpapers over my computers and I'd like to know if it's possible not to set one wallpaper (as a lot of…
Thomas Kowalski
  • 1,995
  • 4
  • 20
  • 42
3
votes
1 answer

Cropping a wallpaper in order to have a crisp image

I am currently working on a wallpaper application. Is there a way to make a bitmap look less blurry and more crisp once it is set as a wallpaper? Does it just require cropping the picture and resizing it to fit the size of the screen perfectly, or…
Amine
  • 195
  • 2
  • 8
3
votes
4 answers

Get color from wallpaper? - Android

How can I find the (Average) color of the current wallpaper and set that color to a layout on my widget? An example of what I'm trying to do: This is a setting on AccuWeather:
Muhammad Ali
  • 3,478
  • 5
  • 19
  • 30
3
votes
2 answers

How do I restart this wallpaper engine after settings have been updated?

I'm creating a live wallpaper and I'm using this tutorial as a starting point: http://code.tutsplus.com/tutorials/create-a-live-wallpaper-on-android-using-an-animated-gif--cms-23088 I'm trying to add a settings menu to let the user choose one of…
3
votes
1 answer

Changing programatically the wallpaper in Linux independently from the desktop environment or the window manager

Linux have got lots of desktop environments (GNOME, KDE, Xfce, Cinnamon...) and windowing systems (X11, Wayland, Mir...) and it seems that each one has got its own way to change the wallpaper. Are there some high-level libraries, especially in C++…
air-dex
  • 4,130
  • 2
  • 25
  • 25
3
votes
0 answers

Set image as wallpaper without using WallpaperManager

There's a lot of sample code on how to set an image as a wallpaper using the Intent.ACTION_ATTACH_DATA, but none of them are working for me with the new google photos app. I'm trying to do this from a notification. The user saves an image to the…
HNS
  • 108
  • 9
3
votes
1 answer

Can I open a URL from android Live Wallpaper?

I'm new to android... having trouble trying to open a URL from a live wallpaper.. Code to open the url: Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse(url)); Activity activity = new…
Stuart Axon
  • 1,844
  • 1
  • 26
  • 44
3
votes
1 answer

Start default Android wallpaper chooser

I'm trying to start default android wallpaper chooser. I'm using: Intent intent = new Intent(Intent.ACTION_SET_WALLPAPER); startActivity(intent); This code works but it opens app chooser. I want to open "Wallpapers" directly. My minSdkVersion…
movil
  • 33
  • 4
3
votes
1 answer

fit / fill image?

I'm making a simple program to change my computer background. I found a stackoverflow question online that more or less covered what I wanted to do. I can now successfully change my wallpaper to be tiled, centered, and stretched from an online image…
Josue Espinosa
  • 5,009
  • 16
  • 47
  • 81
3
votes
1 answer

How to use getCropAndSetWallpaperIntent?

I tried to use getCropAndSetWallpaperIntent method but I got an error. Here is my code : Uri uri = Uri.parse("content://" + getFilesDir() + "/"+ image.path); ContentResolver contentResolver = getContentResolver(); contentResolver.getType(uri); //…
J3n
  • 285
  • 1
  • 3
  • 13
3
votes
1 answer

android - save image from web server and set it as wallpaper

Can anyone please provide me some idea/guidance on how to save an image from a webserver and set it as wallpaper? i am developing an android application which needs to do that and i am new in android. Thanks a lot. I had tried writing my own code…
Lynnooi
  • 189
  • 1
  • 8
  • 23
3
votes
1 answer

Get ID from ImageView and set as wallpaper on click

I am creating wallpaper application and I am stuck at one litle problem. I've made application with image view and button to set as wallpaper. But there is a problem. When I open the picture and click on Set as Wallpaper button I want it to get ID…
BM84-M1
  • 111
  • 14
3
votes
2 answers

Is it possible to change desktop wallpaper from Windows8.1 app?

I've searched a lot about this topic and couldn't find a good solution, so: Is there a way to change the desktop wallpaper from within a windows8.1 app using c#/xaml? eg. by simply providing an image?
malte
  • 1,171
  • 1
  • 15
  • 28