android - Display ImageView in SurfaceView -
I am currently trying to animate some images in my SurfaceView. Right now, I'm displaying my images as a bitmap though, I think it would be better to apply these bitmaps as image visuals. I am not able to create multiple images on my SurfaceView (I am trying to not do this in XML because I want to work first things and then change things later so that it is more portable). Is there a tutorial anywhere on this, or how do I want to remove it and will I leave bitmaps?
You typically see the view object and
SurfaceView Should not try to mix.
SurfaceView is a special approach that provides direct drawing by essentially punching a hole in the current window. It is better to be on a bitmap.
Comments
Post a Comment