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

How to set a slideshow of images as android home screen(wallpaper) programmatically?

I am able to set an individual image from the drawable as android home screen background/wallpaper via code as shown below WallpaperManager myWallpaperManager = WallpaperManager.getInstance(getApplicationContext()); …
0
votes
2 answers

Background image selecting in the app

What I wanted. I'm currently having a problem setting the background for my app. What I wanted is a page with selections of wallpaper/background for the app user to choose. Once they chose the background the wanted by clicking the Image view, the…
narispillai
  • 77
  • 1
  • 10
0
votes
0 answers

Using batch file to change background

reg add "HKCU\Control Panel\Desktop" /v Wallpaper /f /t REG_SZ /d wallpaper.bmp reg add "HKCU\Control Panel\Desktop" /v WallpaperStyle /f /t REG_SZ /d 10 timeout /t 2 /nobreak RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters start…
riozeno
  • 9
  • 1
0
votes
1 answer

Wallpaper change in windows 10

This code works in windows 7, but does not work in the windows 10. Instead of changing the wallpaper just black screen [DllImport("User32", CharSet = CharSet.Auto)] public static extern int SystemParametersInfo(int uiAction, int uiParam, …
d65u
  • 29
  • 1
  • 4
0
votes
1 answer

changing wallpaper on android

I have tried to change wallpaper on android. but it jut shows a portion of the image. however if I lock the phone the lockscreen show the image perfectly scaled but only while the app is running, on exit the lockscreen shows the same as the…
0
votes
0 answers

Set wallpaper and crop

i am developing android app n i am adding the function of set image as wallpaper i want to enable the user to crop the image first using any gallery application he have and after that he can set it as wallpaper i searched many times , but couldn't…
0
votes
1 answer

How to increase image quality

I have a little problem with scaling down images. On big resolution phones all images are looking ok, but when it needs to scale down image on smaller phones, images are looking not smooth. Maybe someone can help me, how to improve image quality…
0
votes
0 answers

What would be the size of Wallpaper for different screen sizes?

Currently iam using this piece of code to get width and height wallpaper WallpaperManager wpm = WallpaperManager.getInstance(this); float minH = wpm.getDesiredMinimumHeight(); float minW = wpm.getDesiredMinimumWidth(); iam…
Amkhan
  • 340
  • 1
  • 3
  • 12
0
votes
1 answer

How to put a wallpaper inside an apk file?

I'm planning to release a nice clock widget and I'd like to include a pretty wallpaper with it (want to do this because previously got some comments like "can i get the matching wallpaper? ;)") So I tried to google on how to put some image file…
dimsuz
  • 8,969
  • 8
  • 54
  • 88
0
votes
1 answer

Picking an image for Wallpaper

I'm writing a live wallpaper and need some help. My wallpaper will create an effect over top of another image or existing wallpaper (not another live wallpaper) that the user chooses in the "Settings...". My problem is this: I can't find a way…
DarthNoodles
  • 370
  • 3
  • 11
0
votes
1 answer

Problem with wallpaper app

I have a wallpaper app and it seems to work fine but... when i open the app in eclipse... the app icon appears as the first image in the wallpaper. I cannot figure out what is happening. can someone help. also the scrolling seemed to have slowed…
will
  • 11
  • 1
0
votes
2 answers

How to set wallpaper manager in swipeview

I am trying to make a wallpaper application where the user can swipe the image and when he finds a proper image he can set the image as the wallpaper .But I am not able to set the wallpaper manager here is my code Custome swipe adapte class`package…
user5992514
0
votes
2 answers

Android Studio - Find most dominant color in wallpaper

I am working on developing an Android Launcher UI. Currently the launcher is working and has a few themes with different colors that can be changed in a settings menu. Is there a way in Java to automatically find the most dominant color in the…
0
votes
1 answer

Smooth animations inside of WallpaperService draw()

I am currently incrementing float variables inside of the draw() method to alter the x and y coordinates of a Bitmap, although the results are quite choppy and you can see the jumps as it increments. Should I create a thread for incrementing the…
Miroslav Glamuzina
  • 4,472
  • 2
  • 19
  • 33
0
votes
1 answer

Incorporating LiveWallpaper in application

I'm sure all must have seen Twitter application for android. How can i show livewallpaper inside application on my dashboard screen, just like twitter is doing. I need to do the same thing as they have done, where and image will keep floating around…
ABDroids
  • 3,235
  • 3
  • 20
  • 9