Questions tagged [services]

Service is a background process in Android, not to be confused with *nix daemons or Windows services

Services are inherently structured in a way that they run in the background, without draining resources. A well designed service should only issue a resource to an activity or application and then shut off once the activity/application has satisfied its requirements from the service.

A *nix daemon/Windows service, are completely different in that they poll and use up a lot of CPU time, which is prohibitively expensive on an Android handset.

An example of such a service is 'GTalk', which checks if there are any new emails via the Gmail application (which communicates via that service) and consumes as little power and resource as possible, within a reasonable time limit.

99 questions
18
votes
1 answer

What's the difference between a service and a broadcast receiver?

I keep hearing about services and broadcast receivers. What's the difference between them, and how do they affect the operation of my Android phone from my point of view?
Dan Hulme
  • 35,000
  • 17
  • 90
  • 155
2
votes
1 answer

What does the IcsService process do?

Under running services, I see the IcsService or long name com.android.samsung.IcsService . What does that process do? I'm debating about removing it. Note I have a AT&T Samsung Captivate (Galaxy S)
bmillare
  • 121
  • 1
0
votes
3 answers

How can I block a service without uninstalling the app?

There was a similar question (How can I prevent services from running in the background? ) but it has been marked answered without an answer to the OP. And so, I'm asking a narrower question because I really want to block quite a few services I…
droidguy
  • 1
  • 1
0
votes
1 answer

Preventing Application Startup

Possible Duplicate: How can I stop applications and services from running? I have an LG-P690b and I've rooted the phone and un-installed several applications that I really didn't want. All is well, however, there is one application that I haven't…
0
votes
1 answer

What is 10263 process

Here is the screen shot I've checked the battery usage apps so that to save my battery level , I've seen a strange process 10263. I want to know what's is use
0
votes
2 answers

Does swiping from recent app screen kill the foreground service?

I have read certain posts and done by myself and i found that on my device android kitkat 4.4.4 when i swipe the app from recent screen the foreground service doesn't stop, So does this behavior present on every version of android os or in some…
shreyans jain
  • 123
  • 1
  • 5