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

Set Lock Screen Wallpaper (Android)

On Galaxy S4 when click on set wallpaper there is three options: Home screen Lock screen Home screen and lock screen For Home screen there is api WallpaperManager.setBitmap() Is there any way to set wallpaper for lock screen?
Milone
  • 11
  • 3
1
vote
2 answers

Set image from app as wallpaper

I have developed an app which have few images in it. I have placed them in drawable folder. I want to give an option for the users to choose anyone of those images and make it as device's wallpaper. How can I do that? Should the user store it first…
Aashish J Kumar
  • 303
  • 4
  • 17
1
vote
1 answer

Can i insert a some code in HTML to set android wallpaper

This would be my first post ever on stackoverflow.com I have found many many of the answers to my questions but this one question i cannot figure out. I know that it is possible to invoke few android commands via either java code or other html code…
1
vote
1 answer

C# : About the Themes & wallpaper in windows, how to keep the slideshow.ini don't change?

For some reason, I am working for resetting the wallpaper by using the SystemParametersInfo in C#. But every time i have done this work, the slideshow.ini in the C:\Users\CurrentUser\AppData\Roaming\Microsoft\Windows\Themes will be reset to…
1
vote
2 answers

How to advance the wallpaper slideshow on windows vista/7 programatically?

I readed on a forum that the "Next Desktop Background" command in Windows Aero Slideshow feature calls the stobject.dll file. So I runned the dumpbin to check wheter I could se an exported method to call: Microsoft Visual Studio…
Jader Dias
  • 88,211
  • 155
  • 421
  • 625
1
vote
1 answer

set background image code

ImageView im1_b; im1_b = (ImageView)findViewById(R.id.b_01_b); im1_b.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub …
Alex-Hyun
  • 85
  • 2
  • 3
  • 14
1
vote
1 answer

I have to fix a bug nullpointerexception

I have an error that only appears in froyo devices nullpointerexception in Bitmap.createScaledBitmap() java.lang.RuntimeException: An error occured while executing doInBackground() at android.os.AsyncTask$3.done(AsyncTask.java:200) at…
1
vote
1 answer

Android set wallpaper

I am using WallpaperManager to set an image as wallpaper. The problem is that the image is automatically enlarged and set ( ie the entire image doesnt appear on screen). I have tried setting very small images, also have tried scaling down images…
user2041902
  • 593
  • 1
  • 6
  • 21
1
vote
1 answer

use phone wallpaper as app background - Theme.Wallpaper like behaviour

I wanted to use Theme.Wallpaper in my app. This theme uses the phones current wallpaper as a background. The problem is it doesn't work on a 4.1 device. I also tried recreating the Theme.Wallpaper in my style resources but again it doesn't work for…
user1545072
1
vote
1 answer

setwallpaper scrollable in android 4

Good morning I have a code that works right to set wallpapers which was downloaded from net at a size of 1024 x 768 in jpg when I set a wallpaper, this is distributed to all homescreens but from android 4+ they are not scrollable, putting a part of…
1
vote
1 answer

Image Scaled Big

I tried to set wallpaper in my device using this function. void setWallpaper() { DisplayMetrics metrics = new DisplayMetrics(); ((Activity) context).getWindowManager().getDefaultDisplay() .getMetrics(metrics); int width =…
user1293519
  • 1,593
  • 3
  • 16
  • 13
1
vote
1 answer

Android LiveWallpaper: load and draw various bitmaps efficiently (example: video)

I am developing a live wallpaper that reproduces an animation (like a short video) on background. Does anyone know how to efficiently load various full screen size bitmaps and draw them on canvas? I have tried 2 approaches and both are not very…
chelo_c
  • 1,739
  • 3
  • 21
  • 34
1
vote
0 answers

Converting traditional Gallery to GridView on Wallpaper Selector

im trying to figure out how i can make this work. I have perfectly working wallpaper selector, Which loads the wallpaper as a [1]:https://www.dropbox.com/s/phu0a6atue7vlsb/Screenshot_2013-01-03-23-35-06.png However im trying to change the code to…
Jaison Brooks
  • 5,816
  • 7
  • 43
  • 79
1
vote
0 answers

OpenGL Live Wallpaper Crashes only on Samsung Phones (most notably on Samsung Galaxy s3)

Well I have a question that is absolutely puzzling me. I have a live wallpaper https://play.google.com/store/apps/details?id=com.simpleworkerz.boise.sunsets#?t=W251bGwsMSwyLDIxMiwiY29tLnNpbXBsZXdvcmtlcnouYm9pc2Uuc3Vuc2V0cyJd The app contains both a…
1
vote
1 answer

Set wallpaper from ViewPager

I have a ViewPager in which I change images with swype. Now I want to make button which will set current image that user is seeing as wallpaper. How to implement onPageSelected or something similar that will do the job? Code: package…