我正在开发full screen application
,但用户可以下拉状态栏,然后访问wifi,蓝牙......功能。我看过一些具有完整全屏的应用程序,并且不允许下拉状态栏。唯一的aproximation是崩溃它,但这个解决方案允许用户访问所有这些功能。这是对我来说无效的近似:
if (Build.VERSION.SDK_INT > 16) {
collapseStatusBar = statusBarManager
.getMethod("collapsePanels");
} else {
collapseStatusBar = statusBarManager
.getMethod("collapse");
}
答案 0 :(得分:0)
检查
this.requestWindowFeature(Window.FEATURE_NO_TITLE); // Remove title bar
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);// Remove notification bar
setContentView(R.layout.activity_home);