Reputation: 2131
I am currently attempting to animate some images in my SurfaceView. Right now, I am displaying my images as Bitmaps. However, I think it might be better to implement these Bitmaps as ImageViews. I have not been able to create multiple ImageViews on my SurfaceView (I am trying to not do this in XML, as I want to get things working first and then later change things around so it is more portable). Is there a tutorial somewhere on how to do this, or am I like wayyy off and should just stick to Bitmaps??
Upvotes: 1
Views: 2105
Reputation: 44919
You generally shouldn't try to mix View
objects and SurfaceView
. SurfaceView
is a very special view that provides direct drawing by essentially punching a hole in the current window. It seems better to stick to bitmaps.
Upvotes: 2