I was going through Bound Service in Android Developer website. I thought I understood the service enough but I just found another way of connecting service through Using a Messenger
class especially for local service. There I got confused. Maybe I got the concept wrong.
Here is my understanding of Android Service
. You create a service when
- You want to do separate jobs in the background.
- You want to make it a separate process.
- You want to make it run in a lifecycle that's independent of the component that started it.
Confusion is the first item in the list, the definition of the background. Isn't the background a thread or process? I never thought that it can run on the main thread.
Here is the caution of service in the dev pages about.
Caution: A service runs in the main thread of its hosting process—the service does not create its own thread and does not run in a separate process (unless you specify otherwise). This means that, if your service is going to do any CPU intensive work or blocking operations (such as MP3 playback or networking), you should create a new thread within the service to do that work. By using a separate thread, you will reduce the risk of Application Not Responding (ANR) errors and the application's main thread can remain dedicated to user interaction with your activities.
Questions
- Why does one choose to use service if the service function will anyway run on the main thread?
- Do we have to write a service only to block ANR even if the time-consuming job is done in the main thread? Assume the service is only for my application.
- Are there any practical cases or reasons to use a service as private and running in the same thread?
Application main thread is not always the UI thread. For example, when
Activity
is stopped, theonStop()
is invoked, hence the UI thread is taken away from thatActivity
and moved to another Activity within the same or a different application. However it doesn't mean the application is no longer active, it can continue working in the background until it is closed either by OS or by user. Then who keeps it running in the background? It is the main thread and not the UI thread.What are services
Why use service
Use
IntentService
if you don't want to fiddle with managing threads on your own. Otherwise, useAsyncTasks
.Please read this excellent article to understand more in detail and also read this answer.
In short, Services runs on the background of the UI thread. You can perform tasks like client-server authentication or write to a database where the tasks are done in the background with no graphical interface.
But if you're doing a really long processing tasks that could freeze the interface, you use a service on a separate thread.
eg of a Service on a separate thread is IntentService