How do I scroll the background image on an ACTION_MOVE event?

Here is my code used to draw the background image:

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

    Canvas c = null;
    try {
        c = holder.lockCanvas();
        if (c != null) {
            c.drawBitmap(myBg, 0, 0, mPaint);
        }
    } finally {
        if (c != null) holder.unlockCanvasAndPost(c);
    }

    // Reschedule the next redraw
    mHandler.removeCallbacks(mDrawAnim);
    if (mVisible && mAnime) {
        mHandler.postDelayed(mDrawAnim, 50 );
    }
}
link|improve this question

20% accept rate
feedback

1 Answer

Here is a tutorial for Android Live Wallpaper. It will help you solve the problem

http://blog.androgames.net/58/android-live-wallpaper-tutorial/

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.