如何获取Android本地服务实例

前端之家收集整理的这篇文章主要介绍了如何获取Android本地服务实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用startService在我的应用程序中启动一个服务.

我不想使用bindService,因为我想自己处理使用寿命.

如果我不使用bindService,我如何获取服务启动的实例?我想要能够得到一个在服务类中创建的处理程序来发布活动的消息.

谢谢.

/亨利克

解决方法

I do not want to use bindService as I
want to handle the service life time
myself.

这并不意味着你必须避免使用bindService().如果需要,同时使用startService()和bindService().

How can I get an instance to the
service started if I do not use
bindService?

使用bindService()与startService(),或使用单例.

原文链接:https://www.f2er.com/android/312515.html

猜你在找的Android相关文章