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

creating a server side wallpaper app

am new to android and I am interested in creating an app where I can put the pictures on a server and then call them from the app itself, i have looked and looked for documentation on this but have had no luck. i was hoping that someone could point…
elcuban
  • 21
  • 5
0
votes
1 answer

blackberry background or wallpaper using java

how to set an img in your application as a blackberry background"wallpaper"? img is in the res folder i read that you can use HomeScreen.setBackgroundImag(uri) but the img shall be in the blackberry device it self is there any ideas?? i used this…
medhat
  • 1
0
votes
1 answer

Android Wallpaper Background

I am currently using the following snippet of code to set my wallpaper background. My problem is that the full image doesn't appear on the wallpaper. It is always clipped and missing objects from the bottom and side views of the wallpaper. I've…
user836200
  • 655
  • 2
  • 12
  • 20
0
votes
1 answer

Openning Wallpaper application from my button

How can I open the system wallpaper application from my application (in a button click)? Can I wait for a result, just like we do for browsing images? Let me be a bit more specific: My application changes wallpaper depending on battery level. So…
Ton
  • 9,235
  • 15
  • 59
  • 103
0
votes
1 answer

with android set wallpaper from url i dont understand

Hi everyone I've check the post on the set wallpaper from URL but I am really new to programing and I still do not undertand it, could someone provide me with an example, basically I have an image on a server and I want to push a button and set it…
user1385487
  • 65
  • 1
  • 9
0
votes
1 answer

Setting wallpaper from Dialog

I made an application to set wallpaper and worked great! The problem is that I changed the Manifest to this: android:theme="@android:style/Theme.Dialog" And now the application changes the wallpaper but the home screen doesn't refresh. If I slide…
Ton
  • 9,235
  • 15
  • 59
  • 103
0
votes
1 answer

What is the storage path for setting blackberry wallpaper?

I know I have to use this code: HomeScreen.setBackgroundImage(Sring uri) to set the wallpaper from an image in my app, but what would I type for the string url? I have the image in my app and as of yet I am not using persistent storage. So question…
Joey John John
  • 243
  • 2
  • 11
0
votes
1 answer

android live wallpaper to home launcher

I have a problem. I am making a "home launcher" and I set the background with this code: sfondo = peekWallpaper(); getWindow().setBackgroundDrawable(sfondo); If the background is static, OK. But if the background is animated it shows a static…
superjump
  • 1
  • 1
-1
votes
2 answers

iphone sdk how to change the wall paper for every 5 seconds?

I am having a requirement like i want to change the wallpapers in iphone like in mac change the wallpapers for every 5 seconds.Is this one possible or not.If it is possible how to achieve it.can anyone share the idea.
Univer
  • 325
  • 2
  • 6
  • 18
-1
votes
1 answer

How to exclude devices with lower GPU in Android?

Possible Duplicate: How to exlude all the devices which have low GPU in Android Manifest? Yesterday, I created a live wallpaper for Android and tried it in my Droid X, Galaxy S, and Fascinate. And I noticed that it runs smootly in Galaxy S and…
user858975
  • 233
  • 1
  • 7
  • 17
-1
votes
1 answer

Android Live Wallpaper + Sprite Animation

I'm a newbie in programming and is very much interested in knowing how to create my own Android Live Wallpaper. I know that a lot of resources are out there but they were pertaining to some advance level of knowledge. Can anyone provide a "step by…
Deshadowathe
  • 1
  • 1
  • 2
-1
votes
1 answer

How to make android recognise app as wallpaper app

I have created a wallpaper application and everything works fine except it won't show in the list of "apply wallpapers from" option on other apps. Is there anything to make android recognise the app as a Wallpaper app.
Noyal Jose
  • 187
  • 3
  • 15
-1
votes
1 answer

Live Wallpaper Scaling bitmap hundred of times at different positions

I am making a live wallpaper app in android studio in which i need bubble effect like in this gif I am developing it naively i.e. no library. What I have tried is creating several hundred rect object and drawing bitmap with different destination…
Salman Khalid
  • 543
  • 5
  • 23
-1
votes
2 answers

Set image as wallpaper from url (Glide + json)

app app Hi, thanks in advance to those who guide me. I have a problem with the Set Wallpaper, that when I clicked on the button, I get the following error: 2018-12-28 22: 36: 02.801 13030-13030 /? E / AndroidRuntime: FATAL EXCEPTION: main     …
-1
votes
2 answers

Is there any way of changing LockScreen Wallpaper/photo in Android programmatically

I want to change the lockscreen wallpaper of Android. I was able to change home screen wallpaper through WallpaperManager.setResource But I am unable to set LockScreen Wallpaper Also is there any way to change it over time automatically?