Back to project page jmini3d.
The source code is released under:
Copyright 2012 Mobialia http://www.mobialia.com/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to ...
If you think the Android project jmini3d listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package jmini3d.android; /*from w ww . j a v a2 s. c om*/ import android.app.Activity; import android.os.Bundle; public class Activity3d extends Activity { public GlSurfaceView3d glSurfaceView3d; public boolean traslucent = false; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); glSurfaceView3d = new GlSurfaceView3d(this, traslucent); onCreateSetContentView(); } protected void onCreateSetContentView() { setContentView(glSurfaceView3d); } @Override protected void onResume() { super.onResume(); glSurfaceView3d.onResume(); } @Override protected void onPause() { super.onPause(); glSurfaceView3d.onPause(); } }