在 Android SDK 中,使用来自多个不同活动的相同服务 class 调用 bindService() 是否会创建该服务的新实例?

In Android SDK, does calling bindService() with the same service class from multiple different activities create new instances of that service?

根据文档,它似乎没有,但我还没有找到这样的明确声明。

对于所有服务,无论绑定与否,最多只有一个实例 - 后续调用 bindService()(或 startService())只会触发现有服务,如果它已经是 运行.