触发和取消 AlarmManager 的活动

发布于 2024-11-25 00:13:21 字数 342 浏览 1 评论 0原文

我正在尝试开发一个应用程序,它可以锁定 Activity 并启动一个服务,该服务将 AlarmManager 设置为另一个 setRepeating() 触发器Service 将发送包含手机位置的短信。

我已经实现了短信的定时发送。但是,我现在想在 finish() 锁定活动时取消 AlarmManager。请帮助我,因为我似乎无法理解解决此问题的方法。

程序流程: 锁屏(活动触发服务)--> AlarmManager(在服务类中)-->协调(发送短信的另一项服务)

I am trying to develop an app where it locks down the Activity and starts a service which will set an AlarmManager to setRepeating() trigger to another Service which will send a SMS containing the phone's location.

I have achieved the periodic sending of the SMS. However, I now want to cancel the AlarmManager when I finish() the lockdown activity. Please help me as I cant seem to understand the approach to address this.

Program flow:
Lockscreen (Activity trigger Service) --> AlarmManager (in Service class) --> Coordinate (Another Service that send sms)

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

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

发布评论

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

评论(1

流心雨 2024-12-02 00:13:21

使用与您最初用于注册警报的等效的 PendingIntent 调用 AlarmManager 上的 cancel()。我所说的“等效”是指它是相同类型的 PendingIntent(活动、服务、广播),并且包装了一个在所有路由元素(组件、组件、数据、MIME 类型、类别)。

Call cancel() on AlarmManager with an equivalent PendingIntent to the one you used to register the alarm in the first place. By "equivalent" I mean that it is the same type of PendingIntent (activity, service, broadcast) and wraps an Intent that is the same on all routing elements (component, data, MIME type, categories).

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