Android Startservice Synchronous?
I can't find this anywhere in the documentation: Is a call to context.startService() synchronous or asynchronous?
Solution 1:
Asynchronous. It will not even begin doing any work until after you return from whatever callback you are in (e.g., onCreate()
, onListItemClick()
).
Post a Comment for "Android Startservice Synchronous?"