stopSelf() vs stopSelf(int) vs stopService(Intent)

后端 未结 7 1233
鱼传尺愫
鱼传尺愫 2020-12-29 00:56

What\'s the difference in calling
stopSelf() , stopSelf(int) or stopService(new Intent(this,MyServiceClass.class))
inside

相关标签:
7条回答
  • 2020-12-29 01:37

    stopSelf(int)- which is used to stop most recent start service based on onStartCommand(Intent i, int f, int startid)'s int startid.

    stopSelf()- which is called by service itself , when task has been completed.

    stopService(Intent) - which is explicitly called from an activity to stop the service.

    0 讨论(0)
  • 2020-12-29 01:39

    There are two flavors of stopSelf(). One takes a startId parameter, to indicate that you have completed work on one specific command, and so the service should opportunistically stop if there are no other outstanding commands.

    0 讨论(0)
  • 2020-12-29 01:42

    stopService() is called from the class from where the Service is started. stopSelf() is called within the running service class to stop the Service

    0 讨论(0)
  • 2020-12-29 01:49

    I hope this will help you:

    A started service must manage its own lifecycle. That is, the system does not stop or destroy the service unless it must recover system memory and the service continues to run after onStartCommand() returns. So, the service must stop itself by calling stopSelf() or another component can stop it by calling stopService().

    Once requested to stop with stopSelf() or stopService(), the system destroys the service as soon as possible.

    However, if your service handles multiple requests to onStartCommand() concurrently, then you shouldn't stop the service when you're done processing a start request, because you might have since received a new start request (stopping at the end of the first request would terminate the second one). To avoid this problem, you can use stopSelf(int) to ensure that your request to stop the service is always based on the most recent start request.

    That is, when you call stopSelf(int), you pass the ID of the start request (the startId delivered to onStartCommand()) to which your stop request corresponds. Then if the service received a new start request before you were able to call stopSelf(int), then the ID will not match and the service will not stop.

    0 讨论(0)
  • 2020-12-29 01:51

    stopSelf()=Stop the service, if it was previously started.

    stopSelf(int startId)=Old version of stopSelfResult(int) that doesn't return a result.

    stopSelfResult(int startId)=Stop the service if the most recent time it was started was startId.Its return boolean result.

    0 讨论(0)
  • 2020-12-29 01:52

    The core functionality of all 3 methods are same and that's why they are having similar names. There are very small differences among them.

    • public final void stopSelf()

    Class : This belongs to android.app.Service class

    Called From : This method is intended to get called from inside the service only.

    Behavior : Service will get stopped. onDestroy() state called.

    • public final void stopSelf(int startId)

    Class : This belongs to android.app.Service class

    Called From : This method is intended to get called from inside the service only.

    Behavior : There is a method from older version stopSelfResult(int startId). This method is newer version of that method. Service will get stopped only if the most recent time it was started was startId. onDestroy() state called.

    May be you can find this method helpful only in a case where you started 2-3 instance of same service but you want to stop them in a order you received with startId list stored with you. Need to be very careful while using this method.

    • public abstract boolean stopService(Intent service)

    Class : This belongs to android.content.Context class

    Called From : This method is intended to get called from outside the service though you are allowed to call from inside.

    Behavior : If the service is not running, nothing happens. Otherwise it is stopped. Note that calls to startService() are not counted -- this stops the service no matter how many times it was started. onDestroy() state called.

    0 讨论(0)
提交回复
热议问题