Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 android 上开始使用 opengl。
我找到的所有教程都假设 GLSurfaceView 可用。我正在尝试编译我的项目,我得到了
GLSurfaceView cannot be resolved to a type
我假设这是因为缺少 jar,但我找不到确切必须包含哪个 jar。
有人可以指出我吗?
将以下 import 语句添加到 java 文件的顶部:
import android.opengl.GLSurfaceView;
解决此问题的一个非常简单的方法是使用完整的包名称,如下所示:
class YourOwnClass implements android.opengl.GLSurfaceView.Renderer { ... }