微调器单击下拉菜单显示状态栏

发布于 2024-11-16 20:54:30 字数 717 浏览 3 评论 0原文

我在我的应用程序中使用微调器。在我的应用程序中,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);

ma​​in.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 技术交流群。

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

发布评论

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

评论(1

红衣飘飘貌似仙 2024-11-23 20:54:30

如果您使用平板电脑分辨率,则它将不起作用。
尝试

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

像这样放入应用程序,

 <application android:icon="@drawable/icon" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:label="@string/app_name">

谢谢

If you are using tablet resolution then it will not work.
Try putting

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

in the application like this

 <application android:icon="@drawable/icon" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:label="@string/app_name">

thanks

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