标签: android android-service
我有Activity(让我们说A)和两个Service s(S1和S2)。这是怎么回事:
Activity
Service
startService()
onCreate()
bindService()
stopService()
我读到在上面的情况中,S1会等待绑定到它的所有服务(如S2)解除绑定。但我想在S1的onDestroy()(A.stopService(S1) - > S1.onDestroy(){ unbind(S2) })中停止S2。我怎么能这样做?
onDestroy()
A.stopService(S1)
S1.onDestroy(){ unbind(S2) }