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

learn more… | top users | synonyms

15
votes
6answers
8k views

How to set the Android Live Wallpaper icon (aka “thumbnail”)

I built my first Android app. It is a Live Wallpaper designed for 2.2. When I press and hold the screen, select Wallpapers and then select Live Wallpapers, my live wallpaper has what looks like a ...
13
votes
2answers
7k views

Android Live Wallpapers — OpenGL vs Canvas

I am a fairly "newb" Android developer, and I would like one of my first projects to be a live wallpaper, however I am conflicted on whether I should be focusing on Canvas or OpenGL for it. Being new ...
12
votes
4answers
10k views

Simplest example of an Android live wallpaper

I'm trying to make an android live wallpaper. I am looking for just a simple example that just displays a solid background and does nothing else to get me started. I've looked up quite a few tutorials ...
12
votes
1answer
404 views

GL Wallpaper example only shows green screen in Emulator, but it's working in device

Do there is any special emulator settings needed to run OpenGL Apps? I already set "GPU emulation" property to "yes". I am trying to run an Android sample live wallpaper, using the sample source ...
11
votes
2answers
15k views

How to make Animated Android Live Wallpaper

Can anyone suggest me of any step by step tutorials on how to make and Android LiveWallpaper. I am not able to find any good tutorials and i am sort of new to this. Please help me. Thanks
10
votes
2answers
708 views

Android Playing Movie Files In A Live Wallpaper

Is this even possible? I have tried using the MediaPlayer but it throws a NullPointerException on the MediaPlayer object. I can get audio to work but video wont. ...
9
votes
2answers
983 views

How to play video as live wallpaper android?

Does anyone know how to play .mp4 video as live wallpaper? I searched a lot, but couldn't find the solution. I just found this one but I am not getting any idea from it. Please help me if you have ...
9
votes
1answer
1k 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 ...
8
votes
2answers
4k views

Setting live wallpaper programatically

Is it possible to set a live wallpaper using some lines of code. For example, i want to tell my users that a live wallpaper is available "click here to set it".
8
votes
1answer
912 views

Find out if different home- and lockscreen wallpapers are set

I have a running live wallpaper and react to SCREEN_ON event to display changes on the canvas. However on some phones the user can set a different lockscreen and homescreen wallpaper (Touchwiz, some ...
7
votes
2answers
2k views

Live Wallpaper in preview mode

I need my wallpaper to act differently when in preview mode (the screen with "Settings" and "Set .. "). How do i know when it's drawn there?
7
votes
1answer
563 views

“fixing” a live wallpaper in portrait mode

I'm trying to find the "simplest" way to fix my live wallpaper in portrait mode, and, as for now, the only way I found is to rotate the entire canvas by 90 degrees counter-clockwise and shift it ...
6
votes
2answers
2k 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 ...
6
votes
1answer
2k views

Android Live Wallpaper practices for performance and battery saving?

It's easy to find many articles discussing the implementation of Live Wallpapers for beginners, which addresses major questions involving Surfaces and so on. But what about the professional ...
6
votes
2answers
2k views

Live Wallpaper Preview Thumbnail Size

What's the width and height of the live wallpaper preview thumbnail in pixels? It's definitely larger than 72x72, that I know.
6
votes
1answer
220 views

Using a FrameLayout as a Live Wallpaper

I'm trying to use a FrameLayout as the content of a Live Wallpaper. According to this answer by Romain Guy, it should be possible, but I didn't have much luck calling .measure() and .layout() on the ...
6
votes
3answers
2k views

Hardware accelerated FFmpeg on android?

I compiled an older version of FFmpeg for Android (if I recall correctly it was 0.6.X). FFmpeg decodes a video frame, scales it, then I'm using OpenGL to draw it on the screen. As far as I can tell, ...
5
votes
3answers
3k views

Android live wallpaper onOffsetsChanged xPixelOffset doesn't seem to return the real pixel offset

I am writing a live wallpaper and I use the function: public void onOffsetsChanged(float xOffset, float yOffset, float xOffsetStep, float yOffsetStep, int xPixelOffset, int ...
5
votes
2answers
267 views

How to load resources or assets in GLWallpaper service

I am trying to develop an Android live wallpaper using OpenGL wallpaper service , I am able to create live wallpaper as in this example by Mark F Guerra But I want to add some sprite animation to my ...
5
votes
2answers
470 views

How to set Live Wallpaper automatically everyday in android

I am developing a wallpaper app. We can add simple wallpaper automatically by using the following code with a service. final WallpaperManager wallpaperManager = ...
5
votes
0answers
215 views

error with setting live wallpaper

I am trying to create an live wallpaper. When i use the same code in activity i produces the the desired result. but if i use that same code for creating live wallpaper, i always get the black screen. ...
4
votes
2answers
4k views

Choosing background for Live Wallpaper

I'm writing a live wallpaper that creates an effect over a background. I want the user to be able to choose the background from any of the system wallpapers and camera photos. What I would like is ...
4
votes
1answer
796 views

How do I move to Live Wallpaper preview from app?

I've been looking all over for a specific example of this and couldn't find it online anywhere. What I want to do is: From my app click a button and move to the Live Wallpaper preview of my apps live ...
4
votes
2answers
997 views

Better frame rate drawing bitmaps in a Canvas?

I'm shooting for an animation in a live wallpaper. Here's the code. It pretty much follows the CubeWallpaper demo: void drawFrame() { final SurfaceHolder holder = getSurfaceHolder(); ...
4
votes
4answers
4k views

Android video as a live wallpaper

i am trying to put video as a live wallpaper. I am using media player for that. i can get SurfaceHolder and i can give that holder to the media player. But its not working for me, its giving me ...
4
votes
2answers
2k views

Live Wallpaper with Game Engine or not?

I'd like to develop a live wallpaper. After some research, I concluded that there were two options to create one : Directly, i.e like it's said on Android-Developpers ( ...
4
votes
2answers
1k views

Android: How to start activity from preference menu?

This is the Android Live Wallpaper. .LiveWallpaperSettings is main activity with settings preferences. <- works normally .AboutActivity is simple dialog activity. <- application craches I ...
4
votes
2answers
3k views

How to create a settings activity for Android Live Wallpaper

How to create a settings activity in live wallpaper like this? Example Picture I've built settings activity with only a simple text and faced some problems. The first problem is that I can't use ...
4
votes
1answer
782 views

Live Wallpaper Screen Rotation

I am currently working on a live wallpaper that is very intensive and does not handle screen rotation very well. In fact the wallpaper is destroyed and displays a blank screen without calling ...
3
votes
3answers
1k views

Wallpaper Settings force close

I'm having a force close problem whenever I try to launch the settings for my live wallpaper. I don't really have anything there, so I'm not sure what could possibly be causing the problem... Here is ...
3
votes
3answers
4k views

android 3d live wallpaper - what engine to use?

I saw this live 3d wallpaper and was wondering how it is made, e.g. what engine should be used to make it? From what I found, Unity3D currently does not support making wallpaper...
3
votes
1answer
2k views

How to implement double tap for Android live wallpapers?

I want to implement a double tap event for a Android live wallpaper. Sadly, I couldn´t find any specific code how to do that. At the moment I´ve found a workarround using the onTouchEvent-method of ...
3
votes
1answer
302 views

How to have live wallpaper open directly from the market?

Is it possible to configure my project manifest, so that when a user presses "open" on the android market, my live wallpaper is applied straight away? Some users don't seem capable of figuring out ...
3
votes
1answer
912 views

Setting the live wallpaper not working

I already asked this, but it was migrated to android.stackexchange.com and closed there as offtopic. So here we go again: I made a simple live wallpaper. On the preview I can see it but if I try to ...
3
votes
1answer
2k views

Parallax effect scrolling of live wallpaper background

I'm trying to get a background in a live wallpaper to behave like a regular wallpaper with regard to scrolling when the user changes homescreens. I know the method required for this is ...
3
votes
1answer
722 views

Live Wallpaper gradient banding: is it possible to use ARGB_8888 or dithering to fix?

I am creating a Live Wallpaper and I'm painting to the canvas on every Runnable.run() call with a changing colour and i'm hoping to put a gradient over the top but the gradient i'm creating is banding ...
3
votes
2answers
362 views

Android live wallpaper sample getting force closed , Unable to instantiate service

I trying to run a some tutorial samples for android live wall paper but always got this error 09-28 16:13:30.729: E/AndroidRuntime(408): java.lang.RuntimeException: Unable to instantiate ...
3
votes
1answer
683 views

Android live wallpaper based on the current wallpaper

I'm trying to create a live wallpaper which uses the current device wallpaper as its background. You can see a good example of it in the 'Bubbles' live wallpaper, which does exactly what I need. I ...
3
votes
1answer
685 views

Set Live Wallpaper Programmatically on Rooted Device Android

Is it possible somehow to set Live Wallpaper programmatically using my Application? I am working on an Application that her purpose is to choose some of the Installed Live Wallpapers on the device ...
3
votes
1answer
225 views

Android OpenGLES device issue

I have recently started learning OpenGLES with Android. I am creating a livewallpaper with GLWallpaperService class with rendering. The problem with Android simulator is able to display animation ...
3
votes
1answer
245 views

Null Pointer Exception in Andengine LiveWallpaper

I am making a livewallpaper using Andengine Live wallpaper extension. The problem is that when i try to attach a sprite (a background image) in OnCreateScene method, I get a null pointer exception. ...
3
votes
1answer
3k views

Weird Exception when Livewallpaper is set in Android

04-24 13:30:59.312: VERBOSE/RenderScript(6044): RS Thread exited 04-24 13:30:59.320: ERROR/libEGL(6044): call to OpenGL ES API with no current context (logged once per thread) 04-24 13:30:59.335: ...
3
votes
4answers
186 views

Can a live wallpaper lock the screen in portrait mode?

Can a live wallpaper lock the screen in portrait mode? And if so, how? I should mention that I have seen two supposed answers to this question on SO, one appeared inordinately complicated, I didn't ...
3
votes
1answer
1k views

Accessing Gmail emails in Android

So basically I'm attempting to make an interactive live wallaper that basically displays your unread gmail emails on your wallpaper. I'm trying to figure out how to access a person's gmail account on ...
3
votes
1answer
975 views

Android “Failure delivering result ResultInfo” when Intent is NOT null

I have a custom image preference in my Live Wallpaper that allows a user to choose an image from their SD card to use as a background. I got the code from here and haven't modified it, so it's almost ...
3
votes
1answer
1k views

Does the Honeycomb android:hardwareAccelerated=“true” manifest setting apply for Live Wallpapers?

I have a live wallpaper that I originally coded to use canvas rendering for phone-sized screens. But when running it on a Xoom tab the framerate degrades noticeably, presumably due to the increased ...
3
votes
2answers
734 views

min3D in a live wallpaper service?

I have been playing around with the min3D libraries a bit lately learning how to use the openGL functionality of Android (it's been frustrating lol). I am trying to modify the GLWallpaperService @ ...
3
votes
1answer
290 views

onOffsetsChanged not called by Touchwiz

Note: since it is a question specific to Samsung, I also asked it on their developer board. I am currently implementing a Live Wallpaper in Android and I'm listening to the onOffsetsChanged() method ...
3
votes
3answers
736 views

IllegalArgumentException in unlockCanvasAndPost (android live wallpaper)

I've created my first live wallpaper implementing drawing in a separate thread. So now I have a WallpaperService and my WallpaperPainter who does the job. The problem is that I getting a ...
3
votes
0answers
81 views

Invoke a receiver on set the live wallpaper in android?

Kindly tell me how can I listen to live wallpaper change in android ? what i have tried: I have made a receiver in android which listens to wallpaper change action. <receiver ...

1 2 3 4 5 10