我如何知道我的服务是否已启动
在我的代码中,我有条件地启动我的服务,如下所示:
Intent intent = new Intent(context, MyService.class);
context.startService(intent);
你能告诉我是否可以找出我之前是否启动过相同的服务,这样我就不会启动我的服务两次?
谢谢。
In my code, I start my service conditionally like this:
Intent intent = new Intent(context, MyService.class);
context.startService(intent);
Can u please tell me if it is possible to find out if I have started the SAME Service before so that I don't start my service TWICE?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果一个服务已经在运行,它就不会被启动两次,事实上,即使你多次调用 startService(),你也只需要一次 stopService() 来停止它。
请参阅此处和此处。
a service won't be started two times if it's already running, in fact even if you call multiple times startService() you need only one stopService() to stop it.
see here and here.
检查这个:
@bigstones:我不知道怎么做,但我有一个服务,它可以根据需要创建多少次(也许是因为我在其中创建了各种可运行对象)。
Check this:
@bigstones: I don't know how, but I have a service that it can be created how many times as you like (maybe because I create inside it various runnable objects).