删除状态栏
Removing status bar
我有一台带 root 权限的 Android 5.1 平板电脑。我正在以信息亭模式实施应用程序。为此,我使用了沉浸式模式,它很好地隐藏了导航栏和状态栏。但是滑动这些条形图会重新出现,这不是我想要的。
通过将 qemu.hw.mainkeys=0
添加到 build.prop
文件的末尾,我能够摆脱导航(底部)栏。不幸的是,当我从屏幕上方下拉时,状态栏仍然重新出现。
是否可以通过编辑 builds.prop 文件或其他方式去除状态栏?
对root设备不太熟悉,所以我想了不同的方法,你有没有尝试将它隐藏在main中activity?
View decorView = getWindow().getDecorView();
// Hide the status bar.
int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;
decorView.setSystemUiVisibility(uiOptions);
// Remember that you should never show the action bar if the
// status bar is hidden, so hide that too if necessary.
ActionBar actionBar = getActionBar();
actionBar.hide();
这适用于 4.1 及更高版本,请在 Android Developer
中查看更多信息
我有一台带 root 权限的 Android 5.1 平板电脑。我正在以信息亭模式实施应用程序。为此,我使用了沉浸式模式,它很好地隐藏了导航栏和状态栏。但是滑动这些条形图会重新出现,这不是我想要的。
通过将 qemu.hw.mainkeys=0
添加到 build.prop
文件的末尾,我能够摆脱导航(底部)栏。不幸的是,当我从屏幕上方下拉时,状态栏仍然重新出现。
是否可以通过编辑 builds.prop 文件或其他方式去除状态栏?
对root设备不太熟悉,所以我想了不同的方法,你有没有尝试将它隐藏在main中activity?
View decorView = getWindow().getDecorView();
// Hide the status bar.
int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;
decorView.setSystemUiVisibility(uiOptions);
// Remember that you should never show the action bar if the
// status bar is hidden, so hide that too if necessary.
ActionBar actionBar = getActionBar();
actionBar.hide();
这适用于 4.1 及更高版本,请在 Android Developer
中查看更多信息