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 { ... }