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

How do you set a wallpaper if your images are stored in an array?

I have a number of images in an array called pics.Where do i call the wallpapermanager?? Please tell me how to create a wallpaper when the image view is clicked. I know i have to create an OnCickLisener on the imageview and then use the…
0
votes
1 answer

Objective C or C /qt set OSX desktop wallpaper?

I would really like a snippet of code that would take in a string location for a file & makes that the desktop background. It can be in c++ or Objective C, but I'm just having no luck here.
Ross The Boss
  • 624
  • 5
  • 17
0
votes
2 answers

Different way for programmatically change Form wallpaper

I need to programmatically assign form's wallpaper by a jpg file choosed by user. I've do this with new Bitmap but jpeg file become read only if I do so. It's possibile to load in RAM jpeg file and use it for wallpaper? Or add jpeg file to project…
user1849976
  • 53
  • 1
  • 10
0
votes
1 answer

android live wallpaper: how to destroy adview?

My problem that my live wallpaper displays some ad in the settings screen in a linearlayout (it works perfectly), but when I send it to background (e.g.: press home button), it seems that the adview is not destroyed and that causes higher cpu usage…
0
votes
1 answer

Windows xp Change Wallpaper to Webpage

To do this manual i just pick a html file in the change wallpaper dialog and tada works.. but if i want to do this from code what api calls / reg keys must i change? Iv tryed this SystemParametersInfo (WinAPI) didnt work and i have found out that…
Peter
  • 37,042
  • 39
  • 142
  • 198
0
votes
1 answer

Image saving in android mobile for setting wallpaper in titanium

I am working in titanium. I am facing an issue i.e. can I save an image taken by camera,Gallery,PhotoAlbum or from a feed of twitter feeds for setting as wallpaper in android device using titanium as a platform. I really need help cause i m…
Burhan Mughal
  • 798
  • 2
  • 7
  • 33
0
votes
1 answer

Setting wallpaper

Im trying to set my bitmap image as a wallpaper! Im currently using this code to get it done. WallpaperManager wpm = WallpaperManager.getInstance(this); float minH = wpm.getDesiredMinimumHeight(); float minW = …
Sebastian
  • 2,698
  • 2
  • 17
  • 26
0
votes
0 answers

Wallpaperservice / MainActivity

I basically need my main activity to run activity and not wallpaper service Example: public class SBLiveWallpaper extends WallpaperService { - this is how it is now This is how I need it: public class MainActivity extends Activity { Is is possible…
0
votes
2 answers

Set Wallpaper from gallery according to position

I have a Gallery and an imageView as in this pic: http://i50.tinypic.com/2e6h2so.png and i need button1 to set the current image as wallpaper I am having a problem in setResource myWallpaperManager.setResource(mImageIds[position]); This is my…
A.Jouni
  • 377
  • 2
  • 4
  • 14
0
votes
1 answer

How can i make a button as Set Wallpaper button?

The code contains a gallery with one button (which has to be added into your manifest file), I just need a suggestion on the button action; what to put inside "imageIDs* or bitmap to reference to the image which previously is clicked and shown. Here…
user1952003
  • 5
  • 1
  • 6
0
votes
1 answer

Android device (4.1) doesn't scroll wallpaper

The wallpaper in Galaxy S III (android 4.1) device doesn't scroll (panning). Scrolling occurs as expected with Galaxy S II (android 2.3) device. I'm using the following code: wallpaperManager = WallpaperManager.getInstance(this); …
someone
  • 227
  • 6
  • 18
0
votes
2 answers

How to solve lag in Live Wallpaper?

I'm creating my first live wallpaper in which snow will produce on random location and start animate.But it lags. This was my code. There is no error in the code but it lags.If i increased the number of snows,it lags more. How to solve lag? public…
Satheesh Kumar
  • 716
  • 5
  • 13
0
votes
1 answer

Where is the registry key for the metro wallpaper in Windows 8?

Where is the key in Windows 8 so you can change the metro wallpaper (the one on the start menu) so I can have something else than the default ones. I know there are programs out there that can do this but I need the key so I can use it in a program…
hsson
  • 595
  • 1
  • 7
  • 16
0
votes
2 answers

How to set image as a wallpaper on a single home screen

As we know android comes with 3 or 5 or 7 home screens. I want to set wallpaper image on a single home screen programatically and fix it for all other home screens. I used the following code: Display display =…
0
votes
0 answers

How I can set wallpaper by set button wallpaper?

I want to set wallpaper from viewpager (selected image,wallpaper button). I have different pictures(R.drawable.a1,R.drawable.a2,R.drawable.a3,R.drawable.a4,R.drawable.a5,R.drawable.a6............) my problem, id doesn't change (always the same…
Erdem Azaklı
  • 255
  • 1
  • 8
  • 27