创建状态栏通知时 Android 应用程序置于最前面
基本上我正在遵循以下有关如何创建状态栏通知的教程: http://mobiforge.com/developing/story/displaying-status-bar -notifications-android
(使用类 MainActivity.java AlarmDetail.java DisplayNotification.java 位于页面中间)
我遇到的问题是,当创建通知时,应用程序也会被带到前面;为了防止这种情况发生,我需要做出哪些改变?
提前致谢。
Basically I was following the following tutorial on how to create status bar notification:
http://mobiforge.com/developing/story/displaying-status-bar-notifications-android
(using the classes MainActivity.java alarmDetail.java DisplayNotification.java half way down the page)
The problem I have is that when the notification is created, the application is also brought to the front; what changes would I need to make in order to prevent this happening?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:像 showNotification("statusbar title",ID) 一样调用这个方法
try this: call this method like showNotification("statusbar title",ID)
创建一个在新线程中运行通知的服务。
Create a service running the notification in a new thread.