Android 设立全屏

Android 设置全屏隐藏标题栏:WindowManager.LayoutParams params getWindow().getAttributes()params.s

Android 设置全屏
隐藏标题栏:

WindowManager.LayoutParams params = getWindow().getAttributes();params.systemUiVisibility = View.SYSTEM_UI_FLAG_VISIBLE;getWindow().setAttributes(params);
?