This page is intended to briefly introduce the differences between SurfaceView and TextureView. html
Both SurfaceView and TextureView are inherited from android.view.View class. They can be drawn and rendered from a separate thread, which is the major difference from other views. The feature of drawing separately is employed by Crosswalk to improve rendering performance greatly by a dedicated GPU thread. android
SurfaceView provides a dedicated drawing surface embedded inside of a view hierarchy. You can control the format of this surface and, if you like, its size; the SurfaceView takes care of placing the surface at the correct location on the screen. Its behavior is more or less similar as an onscreen Window on a traditional desktop system, for example, XWindow on X11 system which can be frameless and embedded inside another XWindow. git
The followings are two limitations of SurfaceView: github
TextureView looks like a general View. You can animate, transform and scale it, just like a TextView. TextureView can only be used in a hardware accelerated window. However, TextureView will consume much more memory than SurfaceView, and also may have a 1~3 frame latency. See the discussion on [3] web
Crosswalk Embedding API for Android supports both SurfaceView and TextureView very well. The XWalkView uses SurfaceView as default, but it allows your to use TextureView as well in case of: api
by setting the boolean flag ANIMATIBLE_XWALK_VIEW to true for TextureView usage. less