|
@@ -1,9 +1,23 @@
|
|
|
package com.garagegames.torque2d;
|
|
|
|
|
|
import android.app.NativeActivity;
|
|
|
+import android.view.View;
|
|
|
|
|
|
public class MyNativeActivity extends NativeActivity {
|
|
|
static {
|
|
|
System.loadLibrary("openal");
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void onWindowFocusChanged(boolean hasFocus) {
|
|
|
+ super.onWindowFocusChanged(hasFocus);
|
|
|
+ if (hasFocus) {
|
|
|
+ getWindow().getDecorView().setSystemUiVisibility(
|
|
|
+ View.SYSTEM_UI_FLAG_LAYOUT_STABLE
|
|
|
+ | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
|
|
|
+ | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
|
|
|
+ | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
|
|
|
+ | View.SYSTEM_UI_FLAG_FULLSCREEN
|
|
|
+ | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);}
|
|
|
+ }
|
|
|
}
|