Hiding the Navigation Bar 2018-01-20 | android | | 字数: 66 | 时长 ≈ 1 分钟 去除虚拟导航 developer.android.com: Hiding the Navigation Bar 1234567891011private void hideSystemNavigationBar() { if (Build.VERSION.SDK_INT > 11 && Build.VERSION.SDK_INT < 19) { View view = this.getWindow().getDecorView(); view.setSystemUiVisibility(View.GONE); } else if (Build.VERSION.SDK_INT >= 19) { View decorView = getWindow().getDecorView(); int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY | View.SYSTEM_UI_FLAG_FULLSCREEN; decorView.setSystemUiVisibility(uiOptions); } } -------------------本文结束 感谢您的阅读------------------- 坚持原创技术分享,感谢您的支持和鼓励! 打赏 微信支付 支付宝 本文作者: kekemao 本文链接: http://kekemao00.github.io/2018/0120/hiding-navigationBar.html 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 3.0 许可协议。转载请注明出处!