Browse Source

Make SDL fullscreen windows on Android actually fullscreen

Sam Lantinga 7 years ago
parent
commit
bb8c3a9cc2
1 changed files with 14 additions and 0 deletions
  1. 14 0
      android-project/app/src/main/java/org/libsdl/app/SDLActivity.java

+ 14 - 0
android-project/app/src/main/java/org/libsdl/app/SDLActivity.java

@@ -211,6 +211,20 @@ public class SDLActivity extends Activity {
 
         setContentView(mLayout);
 
+        /* 
+         * Per SDL_androidwindow.c, Android will only ever have one window, and that window 
+         * is always flagged SDL_WINDOW_FULLSCREEN.  Let's treat it as an immersive fullscreen 
+         * window for Android UI purposes, as a result.
+         */
+        int iFlags = 
+            View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY |
+            View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
+            View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION |
+            View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN |
+            View.SYSTEM_UI_FLAG_FULLSCREEN;
+
+        getWindow().getDecorView().setSystemUiVisibility(iFlags);        
+
         // Get filename from "Open with" of another application
         Intent intent = getIntent();
         if (intent != null && intent.getData() != null) {