Remove use of old theme name.

Change-Id: Iebc7a81738122fbfb94f22649e07eabb39dc4afb
This commit is contained in:
Dianne Hackborn
2011-01-23 13:28:02 -08:00
parent fd6a2b4d25
commit 7c69dba7cc
5 changed files with 25 additions and 15 deletions

View File

@@ -26,8 +26,10 @@ public class TriangleActivity extends Activity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mGLView = new GLSurfaceView(this);
mGLView.setEGLConfigChooser(false);
mGLView.setRenderer(new StaticTriangleRenderer(this));
/*ImageView imageView = new ImageView(this);
imageView.setImageResource(R.raw.robot);
setContentView(imageView);*/
setContentView(mGLView);
}