您的位置:首页 > 移动开发 > Android开发

Android强制虚拟隐藏导航栏

2016-09-21 16:22 453 查看
 

if (Build.VERSION.SDK_INT > 14) {
            View decorView = getWindow().getDecorView();
            // Hide both the navigation bar and the status bar.
            // SYSTEM_UI_FLAG_FULLSCREEN is only available on Android 4.1 and higher, but as
            // a general rule, you should design your app to hide the status bar whenever you
            // hide the navigation bar.
            int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
//                    | View.SYSTEM_UI_FLAG_FULLSCREEN;//
            decorView.setSystemUiVisibility(uiOptions);
        }

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: