Android Spinner 显示隐藏的通知栏
在我的应用程序中,我将应用程序设置为全屏。意味着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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 setContentView() 之前添加这一行:
add this line before setContentView():
然后你在活动中使用
requestWindowFeature(Window.FEATURE_NO_TITLE);
并且它必须在setContentView(....)
方法之前Then u use
requestWindowFeature(Window.FEATURE_NO_TITLE);
in activity and it must be before of thesetContentView(....)
method