Android startService Synchronous?
I can't find this anywhere in the documentation:
Is a call to cont开发者_运维百科ext.startService() synchronous or asynchronous?
Asynchronous. It will not even begin doing any work until after you return from whatever callback you are in (e.g., onCreate()
, onListItemClick()
).
精彩评论