I have an application which is running as a background service and constantly listens to network updates (course location). The service itself doesn't hold any wake locks. The listening part looks like this:

locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 120000, 3000F, this);

my onLocationChanged() method is doing some very simple stuff (just calculating distance to a pre-configured location using Location.distanceTo():

When looking into the battery stats, the application is a rock star. Sometimes even more than the display. CPU is not that bad but Specifically, the "Stay Awake" part is very high. Is there a way to prevent this? I thought to use the AlarmManager to request an update every 2 minutes and then go to sleep after I get it. Not sure though that its a good approach. Also had a thought to detect when the device is on motion but this will most probably be even a larger killer

link|improve this question

I have not done any programming which consumes battery, so your scenario looks interesting. I wonder if an application is running in background then why will the phone "stay awake". And the approach of waking it up every 2 min and then again asking it so sleep is not so good I too feel :| – Shaista Naaz Jul 19 '11 at 4:59
you may refer this link in android developers blog about good practices for getting user location in an android app – thunderstorm Jul 19 '11 at 7:12
feedback

1 Answer

up vote 0 down vote accepted

I think you answered your own question.

I thought to use the AlarmManager to request an update every 2 minutes and then go to sleep after I get it. Not sure though that its a good approach.

That would be the best approach. But don't set it to two minutes, set it to 10 minutes intervals.

link|improve this answer
Just changed this to use AlarmManager - huge improvement. I expected that when requesting location updates with the same frequency Android OS will be smart enough to spare the battery... – nambar Jul 19 '11 at 11:18
@nambar mark the solution as solved or something. – Hades Jul 19 '11 at 11:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.