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

Popular posts from this blog

qt - switch/case statement in C++ with a QString type -

python - sqlite3.OperationalError: near "REFERENCES": syntax error - foreign key creating -

Python's equivalent for Ruby's define_method? -