Android Spinner 显示隐藏的通知栏

发布于 2024-10-12 20:18:17 字数 452 浏览 3 评论 0原文

在我的应用程序中,我将应用程序设置为全屏。意味着android标题栏和通知栏隐藏在这里。 但是,当我单击微调器时,隐藏的通知栏会在几秒钟内可见。我的应用程序中的所有旋转器都没有发生这种情况。但是,当我使用由微调器适配器中的循环执行生成的数组时,它只会在这种情况下发生。 我发现这是 Android 中的一个已知错误。我还在微调器中使用以下样式来解决它。

在我的应用程序中,我将应用程序设置为全屏。意味着android标题栏和通知栏隐藏在这里。 但是,当我单击微调器时,隐藏的通知栏会在几秒钟内可见。我的应用程序中的所有旋转器都没有发生这种情况。但是,当我使用由微调器适配器中的循环执行生成的数组时,它只会在这种情况下发生。 我发现这是 Android 中的一个已知错误。我还在微调器中使用以下样式来解决它。

真的 真的 @无效的

但我仍然无法解决这个问题.. 如果有人有任何解决方案,请告诉我。

In my app i make the app fullscreen. Means android title bar and notification bar is hidden here.
But when i click on the spinner the hidden notification bar gets visible for fraction of seconds. It is not happening with all the spinners in my app. But where i use a array,generated by a loop execution in the spinner adapter, it is only happening in that case.
I have come to know that it is a known bug in android. I also use the following style in spinner to resolve it.

In my app i make the app fullscreen. Means android title bar and notification bar is hidden here.
But when i click on the spinner the hidden notification bar gets visible for fraction of seconds. It is not happening with all the spinners in my app. But where i use a array,generated by a loop execution in the spinner adapter, it is only happening in that case.
I have come to know that it is a known bug in android. I also use the following style in spinner to resolve it.

true
true
@null

But still i cant solve this problem..
If anyone has any solution please let me know.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

赠意 2024-10-19 20:18:17

在 setContentView() 之前添加这一行:

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

add this line before setContentView():

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
天涯沦落人 2024-10-19 20:18:17

然后你在活动中使用 requestWindowFeature(Window.FEATURE_NO_TITLE); 并且它必须在 setContentView(....) 方法之前

Then u use requestWindowFeature(Window.FEATURE_NO_TITLE); in activity and it must be before of the setContentView(....) method

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文