希望对我的 Android 应用程序设计问题有一些建议

发布于 2024-12-05 02:12:17 字数 169 浏览 1 评论 0原文

在我的应用程序中,我想在触发特定条件时执行可重复的工作。 哪一个是完成这项工作的好主意 - 服务管理器或警报管理器。假设如果满足条件,我想每 10 分钟执行一次某项工作。如果我在一个活动中声明一个警报管理器,它在该活动被终止后也可以独立运行吗?或者我应该创建一个服务并在那里启动一个警报管理器并每 10 分钟执行一次工作?

In my application I want to do a repeatable job on firing a certain condition onward.
Which one is a good idea to do the job - service or alarm manager. Lets say I want to do certain job every 10 mins if a condition is satisfied. If I declare an alarm manager in an activity, can it run independently after that activity is killed also? Or should I create a service and start an alarm manager there and do the job every 10 mins?

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

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

发布评论

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

评论(2

我不是你的备胎 2024-12-12 02:12:17

如果您想在活动终止后运行任何任务,那么我认为您应该使用服务而不是警报管理器。

如果它仅适用于活动范围,那么您可以使用警报管理器。

编辑:因此,创建一个独立的服务,然后在其中使用警报管理器并做您想做的事情。

谢谢。

If you want to run the any task after the activity killed then I think you should use Service instead of alarm manager.

And if its only for a activity scope then you can use alarm manager.

EDIT: So make a independent service then use a alarm manager in it and do your stuff what you want.

Thanks.

念﹏祤嫣 2024-12-12 02:12:17

使用服务和线程概念来解决这个问题。

Use service and thread concept for this problem.

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