I hope someone can help me. I have a external library that create a GLCanvasobject. The Library use JOGL and is exported from Eclipse. Now I want to use this Library in an Androidapp. Everything is good and the GLCanvasobject is created.
But the problem is that i am not able to display this object..
When I create a new Eclipseproject and include my library I add the GLCanvasobject to a Panel and then i can see it.
What I have to do when I want to do this on Android. I tried a SurfaceView but there is only a function for normal CanvasObjects.
Android doesn't support AWT and Swing, this limitation has nothing to do with JOGL itself. Therefore, you cannot use the AWT JOGL GLCanvas and the Swing JOGL GLJPanel under Android, you have to use the NEWT JOGL GLWindow instead.