We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36e321a commit c514e66Copy full SHA for c514e66
library/src/main/java/com/hjq/window/EasyWindow.java
@@ -446,9 +446,10 @@ public EasyWindow(@NonNull Activity activity) {
446
setSystemUiVisibility(params.systemUiVisibility);
447
}
448
449
- if (decorView.getSystemUiVisibility() != 0) {
450
- mWindowRootLayout.setSystemUiVisibility(decorView.getSystemUiVisibility());
451
- }
+ // 相关问题地址:https://github.com/getActivity/EasyWindow/issues/85
+ //if (decorView.getSystemUiVisibility() != 0) {
+ // mWindowRootLayout.setSystemUiVisibility(decorView.getSystemUiVisibility());
452
+ //}
453
454
// 跟随 Activity 的生命周期
455
mWindowLifecycleControl = new WindowLifecycleControl(this, activity);
0 commit comments