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 development of Live Wallpapers? What are best practices for structuring the code the right way, to ensure good performance, low power consumption (to save battery power) and best fit different devices?

If possible, some code samples covering these issues would be great.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Power consumption...
1) The most important thing, by far, is that your wallpaper should switch itself off when it is not visible. The cube example handles this correctly, removing runnable callbacks in onDestroy(), onSurfaceDestroyed(), and onVisibilityChanged() (when visible == false).
2) Beyond that, the largest determinant of power drain will be your frame rate. A 24 fps animation will drain much more juice than a 1 fps clock. There's no way around this, except to educate the user, so that expectations are reasonable. An action game will kill your battery whether it's an app or a live wallpaper.

Performance...
Drawing to a canvas has the benefit of simplicity, but for a very sophisticated wallpaper you will need to use OpenGL. There's GLWallpaperService, and AndEngine. The stock wallpapers are rigged to use RenderScript. And there was some talk about extending libGDX to handle wallpaper.

Best Fit...
Well, it's just like the rest of Android: you need to design your artwork in terms of scalable proportions, query the device, and adjust accordingly. For a simple wallpaper, it's usually enough to scale your artwork in onSurfaceChanged(), where you are given the width and the height as parameters. In some cases you may want to examine the full DisplayMetrics.

Useful links...
Code for stock wallpapers: http://android.git.kernel.org/?p=platform/packages/wallpapers/Basic.git;a=tree
Accessing DisplayMetrics ... search for DisplayMetrics here: http://www.codeproject.com/KB/android/AndroidLiveWallpaper.aspx
Moonblink is smart: http://code.google.com/p/moonblink/wiki/Substrate

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.