What happens if a Android Service is started multiple times?

后端 未结 4 869
一生所求
一生所求 2020-11-29 23:22

If I have the following code:

Intent intent = new Intent(this,DownloadService.class);     
for(int i=0;i

        
相关标签:
4条回答
  • 2020-11-29 23:58

    Absolutely Correct. Only one instance of Service is created for an application process. And when you call StartService(); again, then only onStartCommand() gets called and new Intent is passed to onStartCommand() method.

    Note: onCreate() is not called again.

    About calling bindService() multiple times:

    When you call bindService() multiple times, then again only one instance is used for Service and Android Runtime returns same IBinder object to client.

    Means, onBind() is not called multiple times. And just cached IBinder object is returned.

    0 讨论(0)
  • 2020-11-30 00:05

    The Service will only run in one instance. However, everytime you start the service, the onStartCommand() method is called.

    This is documented here

    0 讨论(0)
  • 2020-11-30 00:13

    According to the doc:

    The startService() method returns immediately, and the Android system calls the service's onStartCommand() method. If the service isn't already running, the system first calls onCreate(), and then it calls onStartCommand().

    and

    Multiple requests to start the service result in multiple corresponding calls to the service's onStartCommand(). However, only one request to stop the service (with stopSelf() or stopService()) is required to stop it.

    0 讨论(0)
  • 2020-11-30 00:17

    Adding some more information to the above answers which may be helpful for others is that, startId that the onStartCommand() method receives is different for every startService() call.

    Also if we write in for loop as mentioned above, code written in onHandleIntent() would execute so many times as defined by the for loop frequency, but in sequence and not in parallel.

    The concept is IntentService creates a work queue and each request to startService() trigger onStartCommand() which in turn stores the intent in work queue and then pass the intent one by one to onHandleIntent().

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