surfaceview + glsurfaceview + framelayout

后端 未结 4 1539
傲寒
傲寒 2021-02-04 14:07

I\'m new at java and OpenGL.

I\'m trying to get a camera preview screen with the ability to display 3d objects simultaneously. Having gone through the samples at the a

相关标签:
4条回答
  • 2021-02-04 14:37

    This is very simple actually...if you want to define your view in XML you just have to implement

    Public GLSurfaceView(Context context, AttributeSet attrs) {
    ...
    super(context, attrs);
    }
    

    instead of GLSurfaceView(Context context)

    That's the one that gets called automatically when the view is initialized from the XML. I had the same problem and that's how it was fixed.

    0 讨论(0)
  • 2021-02-04 14:37

    Found out how to solve it... via the java way... just use addContentView instead of using xml.... well at least its solved. :)

    0 讨论(0)
  • 2021-02-04 14:38

    the reason you are getting a null pointer exception when working with .xml is because ur actually creating new Views in your java code.. instead of using the ones from the .xml file to which you might have passed in properties(if u did pass in properties that is..).. the new View would obviously have a null value.. thus throwing a null pointer exception... for example --

    cubesView = new GLSurfaceView(this);

    is actually not needed in the code if you already created the View in the .xml file containing FrameLayout..

    0 讨论(0)
  • 2021-02-04 15:03

    I actually did that here in this SO link which provides a complete implementation.

    0 讨论(0)
提交回复
热议问题