Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个使用表面视图来显示相机预览的 android 应用程序。这都是全屏的。现在,问题是当我尝试从顶部下拉通知栏时,我什么也没得到。我无法拉下任何通知栏。
这里有什么问题?我已经看到其他可能的应用程序,因此必须为此进行某种设置。有人可以帮帮我吗?
将此添加到您的清单中:
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
这可能是你想要的。不要使用this.requestWindowFeature(Window.FEATURE_NO_TITLE);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
在清单中添加此行,它将以全屏模式显示通知栏
android:theme="@android:style/Theme.Holo.Light.NoActionBar"