gpt4 book ai didi

Android程序不想全屏打开

转载 作者:行者123 更新时间:2023-11-29 14:49:37 24 4
gpt4 key购买 nike

昨天刚刚创建了 apk:)

enter image description here

全屏打不开!你能帮忙说说原因吗?我试过适合所有屏幕的虚拟机...

最佳答案

将这一行放在 setContentView 之前

requestWindowFeature(Window.FEATURE_NO_TITLE);
//setContentView(R.layout.main_activity);

如果你想要全屏,那么使用下面的代码:

requestWindowFeature(Window.FEATURE_NO_TITLE);

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
//setContentView(R.layout.main_activity);

是的,还有这个。只需将 theme 放在 AndroidManifest.xml

<activity
android:name="MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"/>

关于Android程序不想全屏打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22801624/

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