绑定到服务(如果存在)
我正在开发一个项目,该项目需要一个活动来连接到本地服务(如果该服务正在运行)并在该服务未运行时启动它。 这种方法合适的标志是什么?
I'm working on a project that needs an activity to connect to a local service if that service is running and start it if it is not running.
What is the suitable flag for such approach.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如,只需将最后一个参数中的
0
传递给#bindService(Intent, ServiceConnection, int)
即可完成。例如,
#bindService(..)
调用将返回true
,但服务将不会实际启动,并且您的服务连接不会触发直到有人真正启动服务,例如使用#startService(Intent)
。至少在 ICS 和 Gingerbread 上是这样的。This is simply accomplished by, for instance, passing
0
in the last parameter to#bindService(Intent, ServiceConnection, int)
.E.g.
The
#bindService(..)
call will returntrue
but the service will not actually start and your service connection will not trigger until someone actually starts the service, e.g. using#startService(Intent)
. At least this is how it works on ICS and Gingerbread.