adspace
Explain the difference between service, intent service, asynctask & threads?
Answer Posted / Chandra Kumar Jaisawal
In Android, Services are long-running background tasks that continue running even after their client (the activity) is closed. Intent Services are specialized services started by an Intent and can handle multiple requests concurrently. AsyncTasks execute a single operation on the worker thread or the UI thread depending on the method used. Threads represent independent sequences of instructions that run in parallel.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers