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

Use dynamic wallpaper as app background

Is it possible to preset one of the dynamic wallpapers supplied to be used as background for my app? It doesn't have to be the one the user is using at the moment since I know there is no public API for that, but anyone selected by me whilst coding…
cactus62
  • 71
  • 1
  • 9
0
votes
1 answer

how to change the wallpaper using service c#

I wish to set a wallpaper for Windows 7 using a C# service. This is working fine when the service is run as a console application. But after installing the service and starting it, then it does not switch between wallpapers. Anybody have an idea how…
AlvinMeko
  • 1
  • 1
0
votes
1 answer

Getting URL from image being displayed in ImageView

I have a menu button, when clicked, I would like to access the URL of the image that is being displayed in the ImageView. I have found a possible solution here but I need a way of getting the URL of the image that is currently being shown, would it…
Jack
  • 2,043
  • 7
  • 40
  • 69
0
votes
0 answers

vbs change and refresh wallpaper

my boss requests me to download the jpg file from the http and change it to the wallpaper periodically, here is my code dim xHttp: Set xHttp = createobject("Microsoft.XMLHTTP") dim bStrm: Set bStrm = createobject("Adodb.Stream") xHttp.Open "GET",…
0
votes
1 answer

Android setting a wallpaper from a gridview image

As usual, I am afraid I am in way over my head with this. I have successfully modified a tutorial to get a set of images from a folder on the SDCard to show in an GridView What I am attempting to do, is allow the user to select one to set as a…
Master Zangetsu
  • 262
  • 7
  • 20
0
votes
1 answer

Python Windows Wallpaper

I found following command to set the Desktop Wallpaper of Windows using Python: ctypes.windll.user32.SystemParametersInfoA(0x14, 0, 'C:\somepic.jpg', 0) Unfortunately the Wallpaper isn't changed as I expected. Am I missing something? Or is there…
Max
  • 1,011
  • 1
  • 13
  • 20
0
votes
0 answers

Delay to show Laucher screen on boot?

I build an custom Home launcher which have some scree before to show Live wallpaper/wallpaper screen. Problem here is before to show launcher scree it show wallpaper set on device for a moment then it show launcher screen. Does any have idea about…
CoDe
  • 11,056
  • 14
  • 90
  • 197
0
votes
1 answer

iOS 7.0.3 Use user wallpaper as background

I use these following code run on iPhone 4S(iOS 7.0.2), it works fine. But on iPhone 5s(iOS 7.0.3), it doesn't work! And the passbook app still has the same. How can I fix my problem? [[self view] setBackgroundColor:[UIColor…
RetVal
  • 107
  • 3
  • 10
0
votes
2 answers

sharing photo from android app

I have developed one wallpaper application in which I want to add share button to share a photo on whatsapp. Here is my code( but that code is only for any text msg) I want to share a photo. Please respond with the code where in I can select a…
9477
  • 3
  • 6
0
votes
1 answer

Android Wallpaper App Screen Size

I am working on an Android wallpaper app. I am trying to develop it for 4.0 and higher Android devices. But even I research a lot, read a lot about scailng wallpaper for different screen sizes I could not fix the problem about it. Here is the…
0
votes
0 answers

setImage in ViewPager like image shows in Android homescreen as wallpaper

I want to set an image in ViewPager as an image shows in homescreen. In Homescreen when we swipe left or right the wallpaper also get swipe left or right accordingly. But if I set an image in ViewPager then it stays at one place and also image…
Sunny
  • 14,522
  • 15
  • 84
  • 129
0
votes
2 answers

How do I get a "Toast" to show up when I apply a wallpaper?

I'm coding an app that has some wallpapers and I want a Toast to show up when a wallpaper has been applied. Currently it only shows up when you apply the first wallpaper. Any ideas on how to get it to show up for every wallpaper? public class…
fredthemugwump
  • 729
  • 1
  • 6
  • 11
0
votes
1 answer

save image to sdcard

this is my wallpaper set code but I want to save wallpaper to sd card. Give me a sample code. i tried below code to save wallpaper but it does not work. You can see that code in given code. "case R.id.save:" ImageView display, p, c1,s8,s9,s10; …
9477
  • 3
  • 6
0
votes
1 answer

Attempting to get current image and set as wallpaper using Universal Image Loader

I am trying to implement the ability for users browsing my app to set images as wallpapers. I am using Universal Image Loader and everything works great except for when it comes time to set the wallpaper. I have tried several different methods…
rwilco12
  • 3
  • 4
0
votes
1 answer

Setting wallpaper from image URL when loaded into view

I have set up my app to load lots of images/wallpapers from an external source/link then load those images into view so the user can scroll through them. I am wanting to make it so once the user clicks on the image they have in view, it will then…
Jack
  • 2,043
  • 7
  • 40
  • 69