Can I set another view, like mGLSurfaceView, if this code was exuted? Like:
onCreate(): ... mGLSurfaceView = new GameSurfaceView(this); setContentView(mGLSurfaceView); // It's works ... ChangeSurface(): ... xGLSurfaceView = new GameSurfaceView(this); setContentView(xGLSurfaceView); // It's not works //-------------------- Another: GameSurfaceView(): ... mGameRenderer = new GameRenderer(); setRenderer(mGameRenderer); // It's works ... ChangeRenderer(): ... xGameRenderer = new xGameRenderer(); setRenderer(xmGameRenderer); // It's not works -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

