Questions tagged [live-wallpaper]

Live wallpaper is an Android 2.1+ feature that adds the potential for animation and interactivity.

Live wallpaper is specific to Android. It was introduced in v2.1 (froyo). Most (but not all) phones running 2.1 support it; all phones running 2.2+ support it. Android Market filters searches so that only supported phones can find published wallpapers (android.software.live_wallpaper).

Live wallpaper allows the programmer to create an Android service (as opposed to an activity) that supports animation, interactivity, and scrolling. The SDK contains sample code for a live wallpaper that displays an animated cube and dodecahedron.

The novice live wallpaperer should start there. The Android source distribution contains code for some "standard" wallpapers that ship with most phones. AndEngine supports live wallpaper creation, as does LibGDX and GLWallpaperExtension.

701 questions
-1
votes
2 answers

How to create a live wallpaper for android

I know there's a lot of information about creating a live wallpaper with renderscript, but I thought I read somewhere that this way of doing things would be deprecated. I don't know if I just imagined that or not, but I don't want to start learning…
travis
  • 159
  • 3
  • 14
-2
votes
2 answers

Setting Jpeg as background in Live Wallpaper

Can we set a jpeg image as a live wallpaper? if yes then how? please share some links or code snippets.
Avtar Guleria
  • 2,126
  • 3
  • 21
  • 33
-2
votes
1 answer

String comparison failing - Shared Preference Key

I've got a strange error. I'm comparing preference changes when the preference changes. When a preference changes it gives me a string of the key that's changed. I've made a list of IF statments to check which statement changes and to update that…
Oliver Dixon
  • 7,012
  • 5
  • 61
  • 95
-2
votes
1 answer

Android Live Wallpaer crashed(NullPointerException, canvas is a null object)but I cannot find where

04-14 12:04:30.971 1639-1938/system_process I/WindowManager: Destroying surface Surface(name=Media:com.android.wallpaper.livepicker/com.android.wallpaper.livepicker.LiveWallpaperChange) called by…
TrW236
  • 367
  • 1
  • 5
  • 14
-2
votes
1 answer

onSurfaceChanged (SurfaceHolder holder, int format, int width, int height) VS onVisibilityChanged(boolean visible)

As I'm new to Live Wallpaper development, I was struggling to know the difference between onSurfaceChanged (SurfaceHolder holder, int format, int width, int height) VS onVisibilityChanged(boolean visible) in Live Wallpaper can any one differentiate…
vinay Maneti
  • 1,447
  • 1
  • 23
  • 31
-2
votes
1 answer

Moving a widget in android

I have made a digital clock as a widget using appWidgetManager in android. Now i want to move that clock on the homescreen. Please Help Thanks!
-3
votes
1 answer

Android Live wallpaper like screen wash

I need your help. I need to create live wallpaper like this : Bikini girl! If you can point me in the right direction it will be wonderful. Also, I want to know is this a video file or is it an animated gif or something else. I saw a simple tutorial…
Jovan
  • 1,741
  • 4
  • 19
  • 38
-3
votes
1 answer

How to write interactive wallpaper for Mac OS X Lion

I need to write interactive live wallpaper for Mac OS X Lion on C/C++. What type of application (target in terms of xcode) it must be? plugin? Cocoa application? etc? Please help me with some tutorials, maybe working source code.
Edward83
  • 6,664
  • 14
  • 74
  • 102
-4
votes
2 answers

How to set camera preview as a wallpaper?

I have a project,where i have a button when the user click the button,then camera preview is set as wallpaper,can any one give me an idea how can i do that? I am using Following code to camera preview public class CameraPreview extends SurfaceView…
Somanadh
  • 97
  • 2
  • 11
-4
votes
2 answers

Android live wallpaper not working

I recently created my own Android live wallpaper project with 18 images but it can't set as wallpaper. If I go to set it as wallpaper I see following error message. Unfortunately Example has stop Working. Image resolution 480x800. I used 18 images.…
-5
votes
2 answers

OutOfMemoryError while setting the live wallpaper on screen

02-15 09:10:02.196: E/dalvikvm-heap(881): Out of memory on a 2162176-byte allocation. 02-15 09:10:02.376: E/AndroidRuntime(881): FATAL EXCEPTION: main 02-15 09:10:02.376: E/AndroidRuntime(881): java.lang.OutOfMemoryError 02-15 09:10:02.376:…
deepak22
  • 11
  • 5
1 2 3
46
47