我希望将我的Android应用全屏显示,但只在某个屏幕上显示Android导航栏(我的设置屏幕)。我知道将导航栏永久隐藏在屏幕上是危险的,但我想知道这是否可行。我已经研究过使用我的设备并使用Xposed框架。
有没有办法以编程方式禁用导航栏,或者"粘贴模式",然后重新启用?
编辑:我已经看过Android沉浸式模式,但似乎用户触摸边缘时导航栏仍会显示。我想删除导航栏的任何提示,直到它们进入我的设置屏幕。
答案 0 :(得分:3)
是的,这是可能的。使用以下代码段来实现所需的功能。
// This snippet hides the system bars.
private void hideSystemUI() {
// Set the IMMERSIVE flag.
// Set the content to appear under the system bars so that the content
// doesn't resize when the system bars hide and show.
View decorView = getWindow().getDecorView();
decorView.setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_HIDE_NAVIGATION // hide nav bar
| View.SYSTEM_UI_FLAG_FULLSCREEN // hide status bar
| View.SYSTEM_UI_FLAG_IMMERSIVE);
}
// This snippet shows the system bars. It does this by removing all the flags
// except for the ones that make the content appear under the system bars.
private void showSystemUI() {
View decorView = getWindow().getDecorView();
decorView.setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
}
有关详细信息,请参阅以下Google文档:
https://developer.android.com/training/system-ui/immersive.html
编辑1:永久隐藏它可能是你可以尝试这样的东西(Hacky)
decorView.setOnSystemUiVisibilityChangeListener
(new View.OnSystemUiVisibilityChangeListener() {
@Override
public void onSystemUiVisibilityChange(int visibility) {
hideSystemUI();
}
});`