Android "Service" is a process or a thread according to operating system?
+5
A:
It is neither, any more than an activity is "a process or a thread".
All components of an Android application run inside a process and by default utilize one main application thread. You can create your own threads as needed.
CommonsWare
2010-10-20 16:37:46
A:
Well, processes host services in the Android OS, so it's not a process. Maybe have a look at the definition of a Service for more details...
Brian Driscoll
2010-10-20 16:38:49