Tagged Questions
Wallpaper is the background image on one's "desktop" or "home screen."
42
votes
2answers
31k views
How to convert a Drawable to a Bitmap?
I would like to set a certain Drawable as the device's wallpaper, but all wallpaper functions accept Bitmaps only. I cannot use WallpaperManager because I'm pre 2.1.
Also, my drawables are downloaded ...
16
votes
21answers
15k views
What's your favorite geek wallpaper? [closed]
A good wallpaper reflects our personality? Programmers
usually use the same kind of geeky wallpapers (Matrix,
Star Wars, Abstract Art) and we like to impress friend
and co-workers.
9
votes
2answers
5k views
7
votes
2answers
10k views
Android wallpaper/background dimensions
Which are the default dimension of the Home wallpaper/background for the various Android screen configurations (small, normal and large screens with low, medium and high density)?
Are 9-patch PNG ...
5
votes
3answers
714 views
why does this code lock my files?
Ive narrowed down to this method but i don't understand why its locking the file. I believe you could use something like
using( something)
{
//do stuff here
}
But im not sure that would A) solve ...
4
votes
0answers
1k views
Change the wallpaper on all desktops in OS X 10.7 Lion?
I would like to change the wallpaper of all desktops (formerly "spaces") on a screen. As of OS X 10.6 there is a category to NSWorkspace which allows the setting of the wallpaper, however, when I use ...
4
votes
2answers
393 views
How to detect the orientation of wallpaper in android
I use WallpaperManager.getDrawable() to get the current wallpaper and then convert it to bitmap to do something else. I find that sometimes I will get the wrong data of wallpaper when the device ...
4
votes
2answers
810 views
Android - Live Wallpaper offset clipping
I am writing a live wallpaper for android. To test my basic code was working I drew a rectangle in the top left-hand cornor of the screen:
canvas.drawRect(0f,0f,50f,50f,paint);
Half of the ...
4
votes
1answer
2k views
How to set wallpaper in Android
I am using Android SDK 1.6. Could someone tell me how to set an image as the wallpaper in the homescreen.
getApplicationContext().setWallpaper();
seems to be not working for me.
4
votes
3answers
1k views
Changing wallpaper on Linux programmatically
How would I change the wallpaper on a Linux desktop (using GNOME) within a C/C++ program? Is there a system API to do it?
3
votes
2answers
109 views
How to exlude all the devices which have low GPU in Android Manifest?
Basically, 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 Fasciante but not in Droid X which has lower ...
3
votes
1answer
174 views
Render to Desktop
I want to be able to render a thing as if it was a wallpaper. I use Windows, and I prefer DirectX. I know that VLC can render the video has a wallpaper in DirectX mode, so it's possible.
So, a quick ...
3
votes
1answer
485 views
IllegalArgumentException while rotating device in Live Wallpaper picker Android 3.0
I'm developing a Live Wallpaper for Honeycomb 3.0, but I get a random error.
When I'm in wallpaper picker (the window with "Set Wallpaper" and "Settings..." buttons, to understand) and Live Wallpaper ...
3
votes
2answers
259 views
How can I detect wallpaper changing as a result of the Windows 7 slideshow?
I am writing a program that needs to know when the desktop wallpaper changes. After some searching, I found a partial solution:
http://www.neowin.net/forum/topic/567779-net-detect-wallpaper-change/
...
3
votes
2answers
781 views
Cropping Picture Issue on Droid X
I'm running into an issue with my program when trying to crop an image selected by the user from their gallery. The issue so far only appears when running on a Droid X, as running on the original moto ...
3
votes
1answer
701 views
Can I open a URL from android Live Wallpaper?
I'm new to android... having trouble trying to open a URL from a live wallpaper..
Code to open the url:
Intent intent = new Intent(Intent.ACTION_VIEW);
...
3
votes
3answers
248 views
How does one detect when the wallpaper has changed (Windows XP or greater)?
I have figured out how to change the desktop wallpaper (there are dozens of examples on the Internet.)
One thing that still eludes me: how do I detect when the wallpaper has changed? (Say via the ...
3
votes
3answers
4k views
Android - how to set the wallpaper image
Is it possible to set the android wallpaper image programatically? I'd like to create a service that downloads an image from the web and updates the home screen wallpaper periodically.
3
votes
3answers
1k views
How to set multiple desktop backgrounds (dual monitor)
I have a code snippet to set a single image across both monitors but I recently got a second monitor for my laptop and I wanted to modify my code to account for setting a diffrent image to each ...
2
votes
0answers
47 views
Android setting wallpaper gone wrong
So I was developing wallpaper changer long time ago and got it released. After a while I started receiving comment the wallpaper not resizing correctly. Also I tried on different sizes of emus and ...
2
votes
0answers
53 views
Android live wallpaper crashing because of custom fonts
I'm trying to create a live wallpaper in Android. It has a text drawn on it in the following way, with customs string placed in the assets directory:
String path = "fonts/calligraffiti.ttf";
...
2
votes
0answers
70 views
Live Wallpaper - “Set Wallpaper” - Need event to use to clear memory
I've created a Live Wallpaper that displays an animation by storing 70 or so images in an array and then displays them one at time to create the animation. I used the structure of the CubeEngine to ...
2
votes
1answer
687 views
WP7 - change home screen background programmatically
Is there any way/API available in order to change the home/lock screen background wallpaper programmatically?
2
votes
0answers
185 views
Android WallpaperManager crops image
I am working on a simple wallpaper app of some images that I have. They are .png files in drawable folders.
Here are some code snippets:
WallpaperManager myWallpaperManager = ...
2
votes
2answers
72 views
How to set video as wall paper
I'm developing an application using MFC. Is it possible to set video as a wall paper behind the desktop icons?
Thank you.
Anam G
2
votes
2answers
619 views
How to create Live Wallpaper in Android?
Can someone guide me how to create a live wallpaper in Android. And also, is there a process to use the photos within the gif and implement them into a live wallpaper? Because that's exactly what I ...
2
votes
1answer
272 views
Live wallpaper not receiving ACTION_MOVE events?
I've found that my live wallpaper doesn't seem to receive ACTION_MOVE events when the CPU is maxed out. It does, however, still receive the ACTION_DOWN and ACTION_UP events.
I've set up a minimal ...
2
votes
0answers
174 views
Wallpaper offset for API level 3?
I've all but finished my little wallpaper app. The only thing now is that I can't find any method for offset on API level 3.
No matter what size image I use, it is not centered in my test phone. It ...
2
votes
3answers
170 views
Is the launcher is responsible for drawing the wallpaper on Android?
The title says it all... I'm just wondering if it's the Launchers' responsibility to render the wallpaper/live wallpapers? or if's always drawn below it? so that if i make a transparent launcher i can ...
2
votes
0answers
618 views
Prevent Live Wallpaper orientation change when an application is opened and orientation is changed?
I'm having an orientation issue with a Live Wallpaper that I wrote. Basically the canvas will rotate depending on the application opened above it. I tested this and realized that the ...
2
votes
1answer
373 views
Android - WallpaperService why does my Engine have to be a inner class?
I'm working on a simple android live wallpaper, I'm following chapter 12 from Hello, Android as my guide.
The bare-bones of a wallpaper service looks like this:
public class MyWallpaper extends ...
2
votes
1answer
218 views
Cropping a wallpaper in order to have a crisp image
I am currently working on a wallpaper application and I was wondering if there is a way to make the bitmap look less blurry and more crisp once it is set as a wallpaper.
Does it just require cropping ...
2
votes
1answer
949 views
Showing Live Wallpaper in a 1.6 target app by detecting if it's a 2.1 device?
We're building an Android app with target SDK 1.6, so it will run on 1.6 devices and higher. We'd like to support Live Wallpapers, which we know is 2.1+ only. Is there a way to build one app with ...
2
votes
1answer
555 views
Are android wallpapers persistent?
I have an application that sets the user's background. Is it possible to remove the wallpaper if my app is uninstalled?
2
votes
2answers
8k views
Android - How to set the wallpaper image? [closed]
Possible Duplicate:
Android - how to set the wallpaper image
What i'm trying to do is, set the wallpaper using an image URI (no cropping)
I'm a noob at dev on Android and dev in general.
...
2
votes
1answer
4k views
android - save image from web server and set it as wallpaper
Can anyone please provide me some idea/guidance on how to save an image from a webserver and set it as wallpaper? i am developing an android application which needs to do that and i am new in android. ...
2
votes
4answers
2k views
Drawing on the desktop background as wallpaper replacement (Windows/C#)
I'm trying to make an application that needs to draw on the desktop, behind the icons so it appears to replace the desktop wallpaper. I've found a few solutions to this, but most of them didn't work ...
2
votes
2answers
2k views
Replacing desktop wallpaper / draw on the desktop
I'd like to do some custom drawing to my windows desktop such that it appears to replace the desktop background (wallpaper). My first try was to get a DC for the desktop's listview and draw to it:
...
2
votes
2answers
1k views
Is it possible to programmatically change a user's screen saver and/or desktop background?
I have been asked to standardize the screen saver and desktop background used by everyone in my company and, aside from going around to each PC individually, I'm looking for a programmatic way to ...
1
vote
0answers
41 views
How to set wallpaper for all api's without stretching
I want to set the wallpaper by clicking a button. In this example, how can I fix the stretching that occurs on api greater than 4 ? Also, is there another method to set the wallpaper for api older ...
1
vote
1answer
109 views
How do I change the wallpaper programatically?
I'd wish to set a wallpaper for Windows XP using C#. I've developed the code so it perfectly works in Windows 7, but apparently it's not the same for XP. I add that wallpaper as a resource, set its ...
1
vote
1answer
60 views
Live wallpaper for android xml
Is it possible to use xml layouts in live wallpapers. I have spent countless hours trying to code. Have also read numerous books and logs. But still no answer
1
vote
0answers
113 views
How to make a background image similar to scrolling wallpaper in Android?
I use a navigation-based iOS application. I want to make a background similar to desktop wallpaper in Android.
So when I go to another View the current View and it's content goes outside of the screen ...
1
vote
1answer
60 views
Live Wallpaper Compatibility Issues
I have a Live Wallpaper (LWP) currently live on both the Android Market as well as the Amazon AppStore. Of the many devices I have tested on I was able to successfully view, download and install my ...
1
vote
2answers
120 views
Change Wallpaper intent Application crashes in Nook Color:
I need to develop a Wallpaper application for Nook Color. I have installed the Nook color addon after that when i use this code in my app and it gets crashed every time. The below API Intent to allow ...
1
vote
2answers
61 views
system wallpaper should change through service
my application requires a service that changes the system wallpaper in a particular time interval how should I implement this, please help???
1
vote
0answers
88 views
Lion: Change Background Pictures on all Desktops
I would like to change the wallpaper on all desktops simultaneously to one picture using a shell script (basically anything shell, python, applescript, automator would be fine).
Any hints?
Daniel
1
vote
1answer
94 views
Is it possible to set the wallpaper just like it's done with the app that comes with Android?
Android has a way to set the home screen wallpaper. The user taps "menu" and then selects "wallpaper" to set a wallpaper from the system. The resulting wallpaper image is properly scaled in both ...
1
vote
1answer
249 views
C#: Set Desktop Wallpaper to a Solid Color
I'm using this code to remove the current wallpaper and set a solid color:
public static class WallpaperColorChanger
{
public static void SetColor(Color color)
{
// Remove the ...
1
vote
0answers
91 views
Getting a frame by frame animation or looped video as a live wallpaper
Ok, so I was hired at a company to be an animator for a game company and my boss wants me to make simple animated wallpapers for android....I am not a programmer...and after reading every book I could ...