gpt4 book ai didi

java - 安卓工作室 : how to remove navigation bar in android app to get a full screen view?

转载 作者:行者123 更新时间:2023-11-29 08:33:20 27 4
gpt4 key购买 nike

如何删除导航栏以获取全屏 View ?

enter image description here

到目前为止,我已尝试使用以下方式设置主题:

<style name="AppTheme" parent="@android:style/Theme.Holo.Light.NoActionBar">
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>

在 styles.xml 中

android:theme="@style/Theme.AppCompat.DayNight.NoActionBar">

在activity_main.xml中
我也试过了

ActionBar ac = getSupportActionBar();
ac.hide();

甚至尝试过

requestWindowFeature(Window.FEATURE_NO_TITLE);

在我的 MainActivity.java 中,但这只会使操作栏消失。我有

现在已经尝试了几天,但无法解决这个问题。

最佳答案

试试吧!在 onCreate() 中调用它

getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);

@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
if (hasFocus) {
getWindow().getDecorView().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
| View.SYSTEM_UI_FLAG_FULLSCREEN
| View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
}
}

关于java - 安卓工作室 : how to remove navigation bar in android app to get a full screen view?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46065897/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com