When is it necessary, or better to use a SurfaceView instead of a View?

link|improve this question

feedback

3 Answers

up vote 36 down vote accepted

Views are all drawn on the same GUI thread which is also used for all user interaction.

So if you need to update GUI rapidly or if the rendering takes too much time and affects user experience then use SurfaceView.

link|improve this answer
feedback

A few things I've noted:

  • SurfaceViews contain a nice rendering mechanism that allows threads to update the surface's content without using a handler (good for animation).
  • Surfaceviews cannot be transparent, they can only appear behind other elements in the view hierarchy.
  • I've found that they are much faster for animation than rendering onto a View.

For more information (and a great usage example) refer to the LunarLander project in the SDK 's examples section.

link|improve this answer
FYI...A SurfaceView can now be transparent: stackoverflow.com/questions/5391089/… – Steve Apr 17 at 20:15
How time progresses! – Ralphleon Apr 17 at 21:15
feedback

The main difference is that SurfaceView can be drawn on by background theads but Views can't. They use more resources though so you don't want to use them unless you have to.

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.