普通的android视图可以用GLSurfaceView扩展吗?
我正在尝试使用 GLSurfaceView 在我的 android 普通视图中绘制图像。 但我听说一个视图不能扩展其他视图。 真的吗,我可以这样做吗?
I am trying to use the GLSurfaceView to draw image in my android ordinary view.
But I heard that the a view can't extends other view.
Really, Can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了避免钻石问题,Java 语言只允许扩展一个类。
To avoid the diamond problem, the Java language only allows you to extend one class.