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 change the wallpaper with batch code in win 8?

It seems like I can't fetch the 1.jpg to be my wallpaper in win 8. The wallpaper become pure black after run this. Why I can't fetch the pic? @ECHO OFF reg add "hkcu\control panel\desktop" /v wallpaper /t REG_SZ /d "source\1.jpg" /f >nul rundll32…
finkfink
  • 175
  • 3
  • 12
3
votes
1 answer

Get Iphone User Wallpaper?

In xcode, is it possible to get the image file that is currently being used at the user's wallpaper? I would like to display it as a background in my app.
3
votes
1 answer

Android Developing - Users Wallpaper as App Background

Is it possible to somehow set the users home-screen wallpaper as the background of an Android app? I think it could be a very interesting way of making your app seem to be more of a part of the phone.
Nic Steyn
  • 85
  • 1
  • 6
3
votes
2 answers

Detect when desktop is shown in a batch file

My question is, can you detect if desktop is currently visible in batch scripting(For Vista)? The Idea is this: I'm writing a script as a prank for my friend. Some of you may heard about Weeping Angels from Doctor Who. I'm trying to make the script…
3
votes
4 answers

Can a live wallpaper lock the screen in portrait mode?

Can a live wallpaper lock the screen in portrait mode? And if so, how? I should mention that I have seen two supposed answers to this question on SO, one appeared inordinately complicated, I didn't understand it all and the answer was not accepted…
Mick
  • 8,284
  • 22
  • 81
  • 173
3
votes
3 answers

How to set multiple desktop backgrounds (dual monitor)

I have a code snippet to set a single image across both monitors but I recently got a second monitor for my laptop and I wanted to modify my code to account for setting a diffrent image to each monitor. Any ideas? (this code snipet for single…
Crash893
  • 11,428
  • 21
  • 88
  • 123
3
votes
1 answer

IActiveDesktop wallpaper fade effect not working after restart

Am I missing something using IActiveDesktop? Sympthoms: After system (Win7/Win8) restart fade effect during wallpaper change disappears. To restore it I have to manually go to "Personalization->Desktop Backgrounds" and set "Picture Location" from…
3
votes
3 answers

How to change the lockscreen wallpaper in android?

I want to change the lockscreen wallpaper of android. I was able to change home screen wallpaper through WallpaperManager.setResource But not able to set LockScreen Wallpaper
Navjot
  • 1,202
  • 1
  • 11
  • 24
3
votes
2 answers

Setting wallpaper with Win API

I want to programmatically set a wallpaper. Here's the only solution I've found so far: SystemParametersInfoW(SPI_SETDESKWALLPAPER, 1, (void*)wallpaperImageFilePath.utf16(), SPIF_UPDATEINIFILE | SPIF_SENDCHANGE); My question is: how to tell…
Violet Giraffe
  • 32,368
  • 48
  • 194
  • 335
3
votes
0 answers

Android. How to set wallpaper by sending intent

I want to call activity, where user can choose area of picture and set it as wallpaper I have some problem with it. My code is: Intent shareIntent = new Intent(); shareIntent.setAction(Intent.ACTION_ATTACH_DATA); Bitmap bitmap =…
Max Polkovnik
  • 319
  • 1
  • 5
  • 18
3
votes
3 answers

android change wallpaper

I'm trying to change wallpaper on galaxy sIII (ICS os) device I'm using 1280x1440 jpeg image by this code: .... Bitmap m = BitmapFactory.decodeByteArray(data, 0,…
someone
  • 227
  • 6
  • 18
3
votes
0 answers

Efficiently load 5 larger than fullscreen Bitmaps into my Android Live Wallpaper and scroll them parralax

So I'm new to Java and this kind of coding. I'm trying to make a Parrallax scrolling Live Wallpaper. But I'm having memory issues. Well I have made it, and it works on on the phone I have. But I think the way i have done it is not very efficient at…
3
votes
1 answer

How to find out the solid color used for the Windows Wallpaper?

I know how to retrieve the wallpaper from the registry: HKEY_CURRENT_USER\Control Panel\Desktop\Wallpaper But what if the user chooses to use a solid color as a wallpaper, how do I retrieve that specific color?
Alexandru Pupsa
  • 1,798
  • 4
  • 21
  • 40
3
votes
0 answers

Failed to register input channel - live wallpaper

I encountered similar problem as this. The crash report is from Google Play and I can't reproduce it by myself. I tried to download Launcher Pro but that wasn't causing any troubles. Here is the stack trace: java.lang.RuntimeException: Failed to…
Mikko P.
  • 41
  • 1
  • 8
3
votes
1 answer

Live Wallpaper and extended background

I'm trying to create a live wallpaper with an animation always centered in the current homescreen page, without loosing the extended background. What I'm doing right now is to draw my custom background bitmap, then draw some text on it. This is my…
Santacrab
  • 3,165
  • 2
  • 25
  • 31