I am using android 2.2 & creating live wallpaper based on cubewallpaper example in android sample
I am loading array of bitmap one by one on a canvas after few interval of time at the same place/position i,e, X and Y position (it is one type of rotated image banner).
Now the problem is
If i am locking the canvas using following code
canvas = holder.lockCanvas();
and after that i am loading some bitmap in on canvas and then lock it using following code
holder.unlockCanvasAndPost(canvas);
then again if i lock the canvas and lode some more bitmaps then previously drawn bitmaps are getting wiped out. so how can i preserve/retain the old bitmaps.