Is AlarmManager the only way to start a task if the application if not running (paused for example)?
If I use threads and not alarm manager, what happens with the thread if the application is paused or killed by Android? Any开发者_如何学运维 good picture about sequence diagram with threads, alarm manager, services, etc that makes good understanding of it? Thanks! Guillermo.
Broadcast receivers registered through manifest will also start the application. Talking of threads and services take a look at the comparisons in this article.
精彩评论