Can the ordinary android view extend with GLSurfaceView?
I am trying to use the GLSurfaceView to draw image in my android ordinary view. But I heard that开发者_如何学Go the a view can't extends other view. Really, Can I do this?
To avoid the diamond problem, the Java language only allows you to extend one class.
精彩评论