I have a graphical program that I would like to manipulate to liveWallpaper.. I went through a couple of the tutorials and it looked like it fit the mold pretty well.

So I started but soon I realized that LiveWallpaper doesn't SurfaceView.

fine.. so I see.. SurfaceHolder obj = getSurfaceHolder(); then some methods to deal w/ the surface..

anyone mind giving me the quick rundown.. I don't have good explanation for onSurfaceChaanged(), OnVisibilityChanged, OnSurfaceCreated(), OnSurfaceDestroyed. Seems like one you get a good layout for LiveWallpaper you can just use a pretty generic template and crank em out..

link|improve this question

70% accept rate
feedback

1 Answer

I use the following code to paint the wallpaper:

void drawFrame() {
    final SurfaceHolder holder = getSurfaceHolder();

    Canvas c = null;
    try {
        c = holder.lockCanvas();
        if (c != null) {
            //do your drawing here
        }
    } finally {
        if (c != null) holder.unlockCanvasAndPost(c);
    }
}

Using this you can draw on a Canvas as you are used to.

I personally don't override onSurfaceChanged() and onSurfaceDestroyed(). I do override onSurfaceCreated() to start drawing. You need onVisibilityChanged() to start/stop the drawing if the LWP becomes visible/invisible.

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.