diff --git a/src/android/SplashScreen.java b/src/android/SplashScreen.java index 428df33..3fb5487 100644 --- a/src/android/SplashScreen.java +++ b/src/android/SplashScreen.java @@ -315,11 +315,11 @@ public class SplashScreen extends CordovaPlugin { // Create and show the dialog splashDialog = new Dialog(context, android.R.style.Theme_Translucent_NoTitleBar); // check to see if the splash screen should be full screen - if ((cordova.getActivity().getWindow().getAttributes().flags & WindowManager.LayoutParams.FLAG_FULLSCREEN) - == WindowManager.LayoutParams.FLAG_FULLSCREEN) { + // if ((cordova.getActivity().getWindow().getAttributes().flags & WindowManager.LayoutParams.FLAG_FULLSCREEN) + // == WindowManager.LayoutParams.FLAG_FULLSCREEN) { splashDialog.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); - } + // } splashDialog.setContentView(splashImageView); splashDialog.setCancelable(false); splashDialog.show();