Android服务startId参数

发布于 2024-09-16 11:08:28 字数 235 浏览 6 评论 0原文

所以我了解服务生命周期等等。但我很困惑 startId 参数的用途是什么?

public int onStartCommand (Intent intent, int flags, int startId)

我知道它与 stopSelf(int) 结合使用,但我不明白重点是什么或 startId 是在哪里生成的。使用 stopSelf(int) 属于什么用例?

So I understand the service lifecycle and all that. But I'm confused what the startId parameter is for?

public int onStartCommand (Intent intent, int flags, int startId)

I get that it's used in conjunction with stopSelf(int), but I don't see what the point is or where the startId is being generated. What use case would using stopSelf(int) fall under?

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

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

发布评论

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

评论(1

叫嚣ゝ 2024-09-23 11:08:28

使用 stopSelf(int) 会属于什么用例?

步骤 #1:调用 startService()

步骤 #2:再次调用 startService()

步骤 #3:调用 stopSelf()

此时,我们希望服务不要停止,因为仍有未完成的工作,由第二个 startService() 调用表示。我们希望 startService()stopSelf() 调用匹配。

What use case would using stopSelf(int) fall under?

Step #1: Call startService()

Step #2: Call startService() again

Step #3: Call stopSelf()

At this point, we want the service to not be stopped, since there is still work outstanding, represented by the second startService() call. We want the startService() and stopSelf() calls to match.

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