如何去掉安卓的通知栏?
我知道将 android:theme="@android:style/Theme.NoTitleBar"
添加到清单会删除标题,但是我该怎么做才能删除通知栏呢?
I know that adding android:theme="@android:style/Theme.NoTitleBar"
to the manifest removes the title, but what do I do to remove the notifications bar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
。请谨慎使用。用户喜欢能够看到他们的通知、信号强度、电池电量等。
Use
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
.Please use this judiciously. Users like being able to see their notifications, signal strength, battery charge, etc.