We have an Augmented Reality app that displays either a video or a 3D model when pointing on a specific marker. This works fine, but as soon as we quit the MediaPlayer activity via the Back-Button, the OpenGL Context seems to get destroyed. The app then just restarts and needs to reload all assets including the 3D model which causes a delay of about 10-15 seconds which we want to prevent. I read already something about setPreserveEGLContextOnPause(true) and put it in our GLSurfaceView (we have a 3.x tablet), but it doesn't seem to do anything (do I need to implement something else to make it work? I barely found usable documentation about it).
I'm not sure where in our app the problem could be, I suppose that somewhere our GLSurface gets destroyed and we dont notice it.
Our code from exiting from the MediaPlayer is this:
public boolean onKeyDown(int keyCode, KeyEvent event) {
if ((keyCode == KeyEvent.KEYCODE_BACK)) {
this.finish();
Intent intent = new Intent(MediaPlayerActivity.this, OpenGLActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
this.startActivity(intent);
}
return super.onKeyDown(keyCode, event);
}
Any hints how we can preserve the OpenGL context, or quit the MediaPlayer without trashing our main activity?
onKeyDown(int, KeyEvent), one that doesn't use GL at all, and one that shows a simpleGLSurfaceView. A media player is something that could very well require its own GL context, forcing the tablet to recycle yours. – Jens Nov 9 '11 at 13:27Activity.onRetainNonConfigurationInstance()and re-using it during onCreate() if it's found. There you could store your model at least to prevent the need for reloading it. – harism Nov 9 '11 at 15:21