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

set iphone wallpaper with array of buttons objective c

Hi. I am developing an app and I would like to set the background in the app itself. Now I created an array of buttons using a for loop and setting tags, but for some reason when I click the buttons nothing happens. This is where the buttons are…
Julio
  • 483
  • 1
  • 4
  • 17
1
vote
2 answers

How to set wallpaper from imageview

I am still can't find the way to set wallpaper that the image getting from ImageView. Anyone can show me the way to set phone wallpaper from android ImageView? Here is my code: ImageView Layout:
SopheakVirak
  • 961
  • 6
  • 14
  • 36
1
vote
1 answer

Android text on wallpaper

I want to draw some text on the wallpaper and make it move, but on the wallpaper image. I know how to do it with c.drawColor(int color) in between the drawing of the moving text, but what can I do when I want to draw on a bitmap for example ? I…
1
vote
2 answers

live wallpaper doesn't slide smoothly on homescreen change

my live wallpaper doesn't slide smoothly most of the time on home screen change. there is not a complicate coding for the position of background. it just use the xpixles that located on the onoffsetschanged method to adjust the x position of the…
Ali
  • 9
  • 1
  • 3
1
vote
1 answer

Change Wallpaper with AMD EyeFinity

Is it possible to set a different wallpaper for each monitor? I want to code a little tool for automatically changing the wallpaper after an amount of time. I have three monitors and I wanted to use a wallpaper with a dimension of 5760x1080. The…
chris6523
  • 530
  • 2
  • 8
  • 18
1
vote
1 answer

How to switch between two wallpapers (LiveWallpapaer for device & single image as wallpaper for myApp)

One LiveWallpaper is set programatically on device start. Now we need to switch to use an Image as wallpapaer for a single app. Once this app is closed, the liveWallpaper should be back. OR Can we make a background image as static so that when…
ramindroid
  • 105
  • 1
  • 8
1
vote
0 answers

Android Wallpaper application Save Button?

Im making an wallpaper app with tons of images and i have set as wallpaper button and share but i don't know how to program a button for save image to sdcard or internal. Could someone help me? I tried doing it once but i screwed up my whole…
Moussa
  • 851
  • 3
  • 10
  • 19
1
vote
1 answer

Android code for Setting Wallpaper taking too long

Basically have been trying to set the wallpaper through a location based app. WallpaperManager wManager; Bitmap bitmap; try { bitmap = BitmapFactory.decodeFile(wallSrc); wManager = WallpaperManager.getInstance(getApplicationContext()); …
Raul-
  • 147
  • 1
  • 11
0
votes
1 answer

Android wallpaper program layouts

When I look at several of the more popular android walpaper programs, (HD Wallpapers and the like), they all seem to have a very similar layout with 4 pictures in a 2 x 2 grid where each takes up approximately 1/2 of the parent's respective width…
PBonc
  • 35
  • 7
0
votes
2 answers

How to scale a wallpaper image based on the device type

I am developing an app, in which the wallpaper image of the device should change at fixed intervals. I have kept the images in the drawable folder. I am using a WallpaperManager to set these images as the wallpaper. To ensure that the app works…
ambit
  • 1,099
  • 2
  • 28
  • 43
0
votes
1 answer

Wallpaper App Save Button?

Im creating a wallpaper app and i have a set wallpaper button and all but i want to program a Save picture button. What code do i need to program the app to save the picture on the android device? Thanks
user1223679
  • 101
  • 1
  • 2
  • 9
0
votes
3 answers

How can I set the wallpaper programaticly?

I want to set the wallpaper on phone boot. How can I do that ?
Alexander Fuchs
  • 1,358
  • 3
  • 19
  • 36
0
votes
1 answer

set video or photo as iphone wallpaper xcode iphone programmatically

I want to set picture or video as a wallpaper on iphone from within the app. Also is it possible that video runs on home sceen while iphone shows a grid of apps installed.i saw the same functionality in Android phone they have api that allow thhem…
Vikas Ojha
  • 444
  • 1
  • 8
  • 23
0
votes
1 answer

Inserting wallpapers in Android

I'm trying to add a custom wallpaper to the default set of wallpapers in Android. Using the emulator (2.3.3 virtual device) I've found them inside /system/app/Launcher2.apk . I've pulled the APK and decoded it with apktool, added the wallpaper…
ziritrion
  • 319
  • 2
  • 8
  • 17
0
votes
1 answer

Live Wallpaper Preview Mode

I have created a simple image slider 'Live Wallpaper' that will call in an image upon DoubleTap. I know there has been many different OOM issues when dealing with images in that the Android System must convert the image into a BMP which essentially…
user896930