应用程序被杀死时如何管理alarmManager(Android)

发布于 2024-10-20 18:08:26 字数 160 浏览 7 评论 0原文

我有一个警报每 2 分钟响一次(当手机没有休眠时)并更新一个小部件,它工作得很好,但是当应用程序被杀死时,没有任何警报剩余,所以它不再工作。我能做些什么来管理这次杀戮并让我的警报在之后继续工作。

如果您需要更多信息,请告诉我。如果你不明白全部,也请告诉我。

谢谢各位的解答!

I have got an alarm that hit every 2 minutes (when the phone is not sleeping) and update a widget, it works good, but when the app is killed there isn't any alarm remaining so it doesn't work anymore. What can I do to manage this kill and keep my alarm working after that.

If you need more information, tell me. If you don't understand all, tell me too.

Thank's for answers!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

空宴 2024-10-27 18:08:26

将警报配置为在系统启动完成意图 (android.intent.action.BOOT_COMPLETED) 或可靠的类似意图上初始化。

创建一个使用以下意图的广播接收器

if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED"))
{
    AlarmManager aMgr = (AlarmManager) cx.getSystemService(Context.ALARM_SERVICE);
    PendingIntent pi = PendingIntent.getBroadcast(cx, 0, new Intent(cx, ScheduleReceiver.class), 0);
    aMgr.setInexactRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, Thoth.Settings.ALARM_TRIGGER_AT_TIME, Thoth.Settings.ALARM_INTERVAL, pi);
}

ScheduleReceiver 是启动更新小部件的服务的类。

Configure your alarm to be initialized on system boot complete intent (android.intent.action.BOOT_COMPLETED) or similar intent that is dependable.

Create a broadcast receiver that consumes the following intent

if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED"))
{
    AlarmManager aMgr = (AlarmManager) cx.getSystemService(Context.ALARM_SERVICE);
    PendingIntent pi = PendingIntent.getBroadcast(cx, 0, new Intent(cx, ScheduleReceiver.class), 0);
    aMgr.setInexactRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, Thoth.Settings.ALARM_TRIGGER_AT_TIME, Thoth.Settings.ALARM_INTERVAL, pi);
}

ScheduleReceiver is the class that starts a service that updates the widget.

忘羡 2024-10-27 18:08:26

如果您正在测试杀死应用程序时会发生什么,您可能会遇到与我相同的问题。

在 2.2 上,如果我在“管理应用程序”视图中终止该应用程序,我的应用程序的 AlarmManager 警报将自动删除。

如果应用程序因异常而终止,则警报将继续触发。

If you are testing what happens when you kill the app, you may run into the same problem as I did.

On 2.2, if I kill the app in the Manage Applications view, my AlarmManager alarms for my app are removed automatically.

If the app dies because of an exception, then the Alarm continues to fire.

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