有些内容在全屏模式下可获得最佳体验,状态栏或导航栏上不会显示任何指示器。例如视频、游戏、图片库、图书和演示文稿幻灯片。这称为沉浸模式。本页将向您介绍如何借助全屏内容吸引用户更深入。

沉浸模式可帮助用户在游戏过程中避免意外退出,并提供沉浸式体验,让他们可以尽情欣赏图片、视频和图书。不过,请注意用户进入和退出应用以查看通知、执行随机搜索或执行其他操作的频率。由于沉浸模式会导致用户无法轻松访问系统导航,因此仅当对用户体验的好处不仅限于使用额外的屏幕空间时,才应使用沉浸模式。
使用 WindowInsetsControllerCompat.hide()
可隐藏系统栏,使用 WindowInsetsControllerCompat.show()
可重新显示系统栏。
以下代码段举例说明了如何配置用于隐藏和显示系统栏的按钮。
Kotlin
override fun onCreate(savedInstanceState: Bundle?) { ... val windowInsetsController = WindowCompat.getInsetsController(window, window.decorView) // Configure the behavior of the hidden system bars. windowInsetsController.systemBarsBehavior = WindowInsetsControllerCompat.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE // Add a listener to update the behavior of the toggle fullscreen button when // the system bars are hidden or revealed. window.decorView.setOnApplyWindowInsetsListener { view, windowInsets -> // You can hide the caption bar even when the other system bars are visible. // To account for this, explicitly check the visibility of navigationBars() // and statusBars() rather than checking the visibility of systemBars(). if (windowInsets.isVisible(WindowInsetsCompat.Type.navigationBars()) || windowInsets.isVisible(WindowInsetsCompat.Type.statusBars())) { binding.toggleFullscreenButton.setOnClickListener { // Hide both the status bar and the navigation bar. windowInsetsController.hide(WindowInsetsCompat.Type.systemBars()) } } else { binding.toggleFullscreenButton.setOnClickListener { // Show both the status bar and the navigation bar. windowInsetsController.show(WindowInsetsCompat.Type.systemBars()) } } view.onApplyWindowInsets(windowInsets) } }
Java
@Override protected void onCreate(Bundle savedInstanceState) { ... WindowInsetsControllerCompat windowInsetsController = WindowCompat.getInsetsController(getWindow(), getWindow().getDecorView()); // Configure the behavior of the hidden system bars. windowInsetsController.setSystemBarsBehavior( WindowInsetsControllerCompat.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE ); // Add a listener to update the behavior of the toggle fullscreen button when // the system bars are hidden or revealed. getWindow().getDecorView().setOnApplyWindowInsetsListener((view, windowInsets) -> { // You can hide the caption bar even when the other system bars are visible. // To account for this, explicitly check the visibility of navigationBars() // and statusBars() rather than checking the visibility of systemBars(). if (windowInsets.isVisible(WindowInsetsCompat.Type.navigationBars()) || windowInsets.isVisible(WindowInsetsCompat.Type.statusBars())) { binding.toggleFullscreenButton.setOnClickListener(v -> { // Hide both the status bar and the navigation bar. windowInsetsController.hide(WindowInsetsCompat.Type.systemBars()); }); } else { binding.toggleFullscreenButton.setOnClickListener(v -> { // Show both the status bar and the navigation bar. windowInsetsController.show(WindowInsetsCompat.Type.systemBars()); }); } return view.onApplyWindowInsets(windowInsets); }); }
(可选)您可以指定要隐藏的系统栏的类型,并确定在用户与系统栏互动时这些系统栏的行为。
指定要隐藏的系统栏
如需指定要隐藏的系统栏类型,请将以下参数之一传递给 WindowInsetsControllerCompat.hide()
。
使用
WindowInsetsCompat.Type.systemBars()
可隐藏这两个系统栏。使用
WindowInsetsCompat.Type.statusBars()
仅隐藏状态栏。使用
WindowInsetsCompat.Type.navigationBars()
仅隐藏导航栏。
指定隐藏系统栏的行为
使用 WindowInsetsControllerCompat.setSystemBarsBehavior()
指定隐藏的系统栏在用户与其互动时的行为。
使用
WindowInsetsControllerCompat.BEHAVIOR_SHOW_BARS_BY_TOUCH
可在相应屏幕上的任何用户互动中显示隐藏的系统栏。您可以使用
WindowInsetsControllerCompat.BEHAVIOR_SHOW_BARS_BY_SWIPE
在任何系统手势(例如,从隐藏了该栏的屏幕边缘滑动)来显示隐藏的系统栏。您可以使用
WindowInsetsControllerCompat.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE
通过系统手势暂时显示隐藏的系统栏,例如从隐藏该栏的屏幕边缘滑动。这些瞬态系统栏会叠加在应用内容之上,可能具有一定程度的透明度,并在短暂超时后自动隐藏。