I'd like to developp a live wallpaper. After some researches, I concluded that there were two options to create one :

I've never developed Live Wallpaper. Which solution is the easiest and fastest ?

Thanks.

link|improve this question

67% accept rate
feedback

1 Answer

You have four choices: 1) Handle the drawing directly, as in the Cube example in the SDK. 2) Use AndEngine. 3) Use LibGDX. 4) Use GLWallpaperService.

If your wallpaper is fairly simple, I would suggest doing the drawing yourself. That is what most people do. If you need "physics" (e.g. a particle system), look at AndEngine or LibGDX. If you need 3D, look at GLWallpaperService. In addition to the Cube example, you might want to study these: http://android.git.kernel.org/?p=platform/packages/wallpapers/Basic.git;a=tree;f=src/com/android/wallpaper Good luck. George.

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.