Android 全屏 但是有状态栏

全屏 但是有状态栏

private void hideStatusBar() {
WindowManager.LayoutParams attrs = getWindow().getAttributes();
attrs.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN;
getWindow().setAttributes(attrs);
}

private void showStatusBar() {
WindowManager.LayoutParams attrs = getWindow().getAttributes();
attrs.flags &= ~WindowManager.LayoutParams.FLAG_FULLSCREEN;
getWindow().setAttributes(attrs);
}

关键是,在做了该Activity的全屏设置的前提下,还要在onCreate()方法中加入如下语句:

getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);

此方案我已经试过了,可行,且不会导致Activity重排。

此方案是我Google搜索出来的,网址如下:
Hacking Android: Show/hide status bar in fullscreen application
感谢他!

你可能感兴趣的:(Android开发)