summaryrefslogtreecommitdiff
path: root/src/com/android/certinstaller/WiFiInstaller.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/certinstaller/WiFiInstaller.java')
-rw-r--r--src/com/android/certinstaller/WiFiInstaller.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/com/android/certinstaller/WiFiInstaller.java b/src/com/android/certinstaller/WiFiInstaller.java
index 7ddee49..ad03eca 100644
--- a/src/com/android/certinstaller/WiFiInstaller.java
+++ b/src/com/android/certinstaller/WiFiInstaller.java
@@ -1,5 +1,7 @@
package com.android.certinstaller;
+import static android.view.WindowManager.LayoutParams.SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS;
+
import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
@@ -38,6 +40,7 @@ public class WiFiInstaller extends Activity {
@Override
protected void onCreate(Bundle savedStates) {
super.onCreate(savedStates);
+ getWindow().addSystemFlags(SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS);
mIsPasspointConfigurationValid = false;
Bundle bundle = getIntent().getExtras();
@@ -169,7 +172,9 @@ public class WiFiInstaller extends Activity {
}
});
}
- builder.create().show();
+ final AlertDialog alertDialog = builder.create();
+ alertDialog.show();
+ alertDialog.getWindow().addSystemFlags(SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS);
}
/**