微调器单击下拉菜单显示状态栏
我在我的应用程序中使用微调器。在我的应用程序中,Android 标题栏和通知栏被隐藏。 但是,当我单击微调器时,隐藏的通知栏会在几分之一秒内可见。这是我的代码:
Main.java:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Hide the Title Bar
requestWindowFeature(Window.FEATURE_NO_TITLE);
// Hide the Notification or Status Bar
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.myActivity);
main.xml:
<activity android:name=".YourClassName"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
}
但我仍然无法解决这个问题..如果有人有任何解决方案,请告诉我。
I am using spinner in my applicaltion. In my app Android title bar and notification bar is hidden.
But when i click on the spinner the hidden notification bar is visible for a fraction of a second. Here is my code:
Main.java:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Hide the Title Bar
requestWindowFeature(Window.FEATURE_NO_TITLE);
// Hide the Notification or Status Bar
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.myActivity);
main.xml:
<activity android:name=".YourClassName"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
}
But still i cant solve this problem.. If anyone has any solution please let me know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用平板电脑分辨率,则它将不起作用。
尝试
像这样放入应用程序,
谢谢
If you are using tablet resolution then it will not work.
Try putting
in the application like this
thanks