用了laya之后,状态栏怎么也显示不了。网上找了好多代码都试过。android的。
试过的代码:
```
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_FULLSCREEN);
View decorView = getWindow().getDecorView();
decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE);
```