https://developer.android.com/training/system-ui/navigation.html


This lesson describes how to hide the navigation bar, which was introduced inAndroid 4.0 (API level 14).

Even though this lesson focuses on hiding thenavigation bar, you should design your app to hide the status barat the same time, as described in Hiding the Status Bar.Hiding the navigation and status bars (while still keeping them readily accessible)lets the content use the entire display space, thereby providing a more immersiveuser experience.

Figure 1. Navigation bar.

Hide the Navigation Bar on 4.0 and Higher

You can hide the navigation bar on Android 4.0 and higher using theSYSTEM_UI_FLAG_HIDE_NAVIGATION flag. This snippet hides boththe navigation bar and the status bar:

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);

Note the following:

  • With this approach, touching anywhere on the screen causes the navigation bar (and status bar) to reappear and remain visible. The user interaction causes the flags to be be cleared.
  • Once the flags have been cleared, your app needs to reset them if youwant to hide the bars again. See Responding to UI Visibility Changes for adiscussion of how to listen for UI visibility changes so that your app canrespond accordingly.
  • Where you set the UI flags makes a difference. If you hide the system bars in your activity's onCreate() method and the user presses Home, the system bars will reappear. When the user reopens the activity, onCreate()won't get called, so the system bars will remain visible. If you want system UI changes topersist as the user navigates in and out of your activity, set UI flags inonResume()or onWindowFocusChanged().
  • The method setSystemUiVisibility() only has an effect if the view you call it from is visible.
  • Navigating away from the view causes flags set with setSystemUiVisibility() to be cleared.

Make Content Appear Behind the Navigation Bar

On Android 4.1 and higher, you can set your application's content to appear behindthe navigation bar, so that the content doesn't resize as the navigation bar hides andshows. To do this, useSYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION.You may also need to useSYSTEM_UI_FLAG_LAYOUT_STABLE to help your app maintain astable layout.

When you use this approach, it becomes your responsibility to ensure that critical partsof your app's UI don't end up getting covered by system bars. For morediscussion of this topic, see the Hiding the Status Bar lesson.

Next: Using Immersive Full-Screen Mode

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. Google I/O 2014 - Keynote for Android
  2. Android(安卓)View 的工作原理(包含对 Dec
  3. ScrollView 嵌套 RecyclerVeiw, 轻松解决
  4. Android(安卓)Studio打包全攻略---从入门
  5. 我的第一个应用程序:如何逐步创建第一个An
  6. Qt on Android:图文详解QT开发Andriod入门
  7. Android仿今日头条详情页实现
  8. android中Timer+TimerTask+Handler配合,重
  9. Android(安卓)NDK开发(六)——使用开源LA
  10. GMTC分享——当插件化遇到 Android(安卓)