aboutsummaryrefslogtreecommitdiffstats
path: root/src/android/com
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-10-06 03:59:43 +0200
committerSven Gothel <[email protected]>2011-10-06 03:59:43 +0200
commit48113ca0298ca79473dca73b85ebd4ef1a9cd078 (patch)
tree498277e390e252bf11b15b2789fea430a1f7aede /src/android/com
parentfc67b7c48a7d0280c44012d5daec04f227bcf0fa (diff)
NEWT/Android: Move fullscreen setting to AndroidWindow ; Cleanup AndroidWindow
Diffstat (limited to 'src/android/com')
-rw-r--r--src/android/com/jogamp/android/launcher/NEWTLauncherActivity.java9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/android/com/jogamp/android/launcher/NEWTLauncherActivity.java b/src/android/com/jogamp/android/launcher/NEWTLauncherActivity.java
index b79be888f..3120fc73e 100644
--- a/src/android/com/jogamp/android/launcher/NEWTLauncherActivity.java
+++ b/src/android/com/jogamp/android/launcher/NEWTLauncherActivity.java
@@ -64,8 +64,8 @@ public abstract class NEWTLauncherActivity extends Activity {
// System.setProperty("jogl.debug", "all");
// System.setProperty("jogl.debug.GLProfile", "true");
- // System.setProperty("jogl.debug.GLDrawable", "true");
- // System.setProperty("jogl.debug.GLContext", "true");
+ System.setProperty("jogl.debug.GLDrawable", "true");
+ System.setProperty("jogl.debug.GLContext", "true");
System.setProperty("jogl.debug.GLSLCode", "true");
System.setProperty("jogl.debug.CapabilitiesChooser", "true");
@@ -107,11 +107,6 @@ public abstract class NEWTLauncherActivity extends Activity {
throw e;
}
- // Make window fullscreen
- requestWindowFeature(Window.FEATURE_NO_TITLE);
- getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
- WindowManager.LayoutParams.FLAG_FULLSCREEN);
-
callMethod(activityObject, mSetIsInvokedByExternalActivity, this);
callMethod(activityObject, mOnCreate, savedInstanceState);