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

access wallpaper image with Python?

(I understand the answer might be Windows exclusive). Is it possible to access the wallpaper image (pixel data) (if any is used) with Python? I've seen some apps do it for some cool effects like custom fading from the "fake wallpaper" to a video…
user975135
0
votes
1 answer

java code for changing wallpaper in windows 7

Can I change wallpaper of windows 7 using Java code? Here's my code: public class Changer { /** * @param args */ public static native int SystemParametersInfo(int uiAction,int uiParam,String pvParam,int fWinIni); static { …
user2520736
  • 1
  • 1
  • 1
0
votes
2 answers

draw rectangle canvas android

I am new to android programming and have run into a small problem. If you could help, that would be greatly appreciated. I am making rectangles for a live wallpaper I am making using: void drawFrame() { final SurfaceHolder holder =…
Gero K
  • 1
  • 2
0
votes
1 answer

changing webpage wallpaper automatically with fading effect

I am creating a webpage for my project which requires that the background image should change every 10 seconds with nice transition (like fade effect). I managed to change wallpaper automatically but I am not able to configure it how can I do it.…
android_newbie
  • 667
  • 2
  • 14
  • 32
0
votes
0 answers

Display an Android live wallpaper in a fragment

Is there any way to display an Android live wallpaper in a fragment? I have a live wallpaper, and currently if the user wants to change some settings, they need to click settings, make a change, hit the back button, and see if the change is what…
gsgx
  • 12,020
  • 25
  • 98
  • 149
0
votes
1 answer

android:settingsActivity - how to get non-standard behavior

I have made a live wallpaper, which has many complex settings. Looking at various examples on the web it appears that the standard way to set preferences in a wallpaper is to have some xml like this:
Mick
  • 8,284
  • 22
  • 81
  • 173
0
votes
1 answer

Android Wallpaper Managerdoes not create an object (NPE)

I'm trying to create a simple gallery application with as wallpaper option, but every time I get a Null Pointer Exception in a: myWallpaperManager.setBitmap(mBitmap) line. Here is my code: package com.pbsoft.galeria; import…
0
votes
1 answer

I need advice for this project

Shows s JPEG image. Display a button over the image that allows the user to set the image to their wallpaper. Auto resizes the image to the users specific Android phone display size. Removes the wallpaper if the app is uninstalled. I can do…
0
votes
2 answers

How to remove all images which came with the app when uninstalling

i am creating a simple app for a project that comes with an image and above it a button when you press the button the image becomes the wallpaper of the phone. This i have done however for my project i need the wallpaper to be removed if the app is…
0
votes
1 answer

Set Wallpaper when images are from arraylist

How could i set wallpaper when the images are stored in arraylist i have tried but no hope!! here is the code: final ImageView image = new ImageView(mContext); image.setImageResource(mImageIds[pos]); try { …
user2134412
0
votes
1 answer

Set Wallpaper programmatically in Android

I am having problem of setting wallpaper in android.I have used the following code but its not working . Here is the code: final WallpaperManager wallpaperManager = WallpaperManager.getInstance(this); public void onClick(DialogInterface dialog,…
user2134412
0
votes
2 answers

onHandleIntent() - Wallpaper change not working correctly

I am using the IntentService to change wallpaper in the background. Using the code below inside the main Activity class the wallpaper changes to an image correctly, but when the code is added to the onHandleItent() the background changes to a…
KickAss
  • 4,210
  • 8
  • 33
  • 41
0
votes
2 answers

App UI becomes unresponsive when Bitmap is being loaded

I have a CountDownTimer which calls the ChangeWallpaper() method every 15 seconds. The Wallpaper changes as it should but when I try and open the App, it makes the App Drawer screen unresponsive for few seconds. When the App finally opens,…
KickAss
  • 4,210
  • 8
  • 33
  • 41
0
votes
1 answer

Bitmap wallpaper change every 10 seconds android

Hello I'm trying to create bitmap wallpaper. But this bitmap changes every 10 seconds. How can I accomplish this? This is what I have tried: // I have declared int[] images = {R.drawable.donna, R.drawable.donna1, R.drawable.marian, …
user1410081
0
votes
1 answer

Saving Gallery Image (Wallpaper) to SD Card (Closed)

Im trying to figure out how to make this code work and im loss for answer's. My code is simply a wallpaper selector, code pulled from the AOSP source. Im adding a button which will save the current wallpaper to the sd card. I've got the following…
Jaison Brooks
  • 5,816
  • 7
  • 43
  • 79