How to stop intentservice in android?

后端 未结 6 1808
北荒
北荒 2020-12-20 18:44

Could anyone tell me how to stop intentservice in Android?

If I use stopservice to stop an intentservice, it doesn\'t work.

I have

6条回答
  •  情深已故
    2020-12-20 19:34

    An IntentService is designed to stop itself only when all the requests present in the work queue have been handled.As per docs,IntentService class "Stops the service after all of the start requests are handled, so you never have to call stopSelf()"

提交回复
热议问题