如何设置每天触发的杀戮安全警报?
我知道如何设置重复触发警报,但在我的应用程序被终止后警报停止触发。
如何确保警报按照设置的方式继续触发?
I know how to setup an alarm to fire repeatedly, but the alarm stops firing after my application is killed.
How do I make sure the alarm continues to fire as it was setup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在几次后自动重新启动已关闭的应用程序 Activity
中描述的 OneShotAlarm 方法的秒数
使用http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/OneShotAlarm.html
使用计划的应用程序(重新)启动。
You can automatically restart your closed app Activity after a few
seconds using the OneShotAlarm approach described at
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/OneShotAlarm.html
using a scheduled app (re)launch.
如果您尝试终止集成时钟应用程序,您会看到闹钟不再响起(我的 HTC Desire 遇到了问题)。
那是因为当应用程序被终止时你无法保留任何观察者。
所以你不能设置任何杀戮安全警报。
If you try to kill the integrated clock application, you'll see the alarm doesn't ring anymore (I had the problem with my HTC Desire).
That's because you can't keep any observer when the application is killed.
So you can't place any kill safe alarm.