在Android中隐藏底部选项栏

时间:2014-04-15 11:03:59

标签: android

我想在Android中隐藏底部选项栏。我不知道我们是否将它称为Option Bar。

请查看下面的图片:如果我们称之为其他内容,请告诉我。它在底部。

现在,我想隐藏它。怎么做 ? Hide Option Bar

1 个答案:

答案 0 :(得分:1)

它被称为导航栏,它只有选项按钮的原因可能是因为你的设备有家用和背面的硬件按钮,这就是为什么它看起来只是一个选项按钮吧。

Refer to the docs用于隐藏它,虽然它只适用于支持它的版本。 对于4.0 +

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);
相关问题