我正在尝试使用 GLSurfaceView 在我的 android 普通视图中绘制图像。但是我听说a视图不能扩展其他视图。真的,我可以这样做吗?
1 回答
1
To avoid the diamond problem, the Java language only allows you to extend one class.
于 2011-10-04T18:07:18.530 回答
我正在尝试使用 GLSurfaceView 在我的 android 普通视图中绘制图像。但是我听说a视图不能扩展其他视图。真的,我可以这样做吗?
To avoid the diamond problem, the Java language only allows you to extend one class.