I'm using the IconifiedTextList example and extending it to try out the other android features in separate tabs
I'm using the OpenGL SurfaceViewActivity example in one of the tabs
This is how im calling the activity:
- Code: Select all
tabHost.addTab(tabHost.newTabSpec("tabOpenGLViewLayout")
.setIndicator("", getResources().getDrawable(R.drawable.icon))
.setContent(new Intent(this, GLSurfaceViewActivity.class)));
However, it just displays a blank tab with a black background.
I'm guessing this is to do with the fact that it is a surface view - not sure though
can anyone give me any pointers?
cheers!

