Just watnted to know if we are getting gps location on fixed interval (say per hour), does it expense battery every hour every minute or only when it gets location each hour or when the location is updated. Eager to know what goes in background.

Here is what reference says

"Background services should be careful about setting a sufficiently high minTime so that the device doesn't consume too much power by keeping the GPS or wireless radios on all the time. In particular, values under 60000ms are not recommended. "

So I was just eager that when the location is changed or after minTime, the gps radios are on and after getting location, they goes off, is it?

link|improve this question

64% accept rate
feedback

1 Answer

up vote 0 down vote accepted

According to reference we can decide that expensive battery using happens when GPS engine try to get new location and we can control freqency of this using method public void requestLocationUpdates (long minTime, float minDistance, Criteria criteria, PendingIntent intent)

link|improve this answer
Edited my question, please check – g.b.1981 Jul 8 '11 at 12:25
@g-b-1981 I just tested this behaviour. It seems it working as: 1. if we haven't location we will try found it (i'm not sure but i get on my device (G1, android 2.2) next behaviour: while not found location it try in some fixed time interval which length depends on minTime and go to sleep some other time interval) 2. if we have location we will search new one only after minTime or minDistance condition have been released Between searching location it use battery not so much P.S. sorry for my english and commenting here (i haven't permission commenting questions) – Grigory Kalabin Jul 8 '11 at 14:21
That means, between the two times (it searches for location) or after the location changed, the gps radio goes off, correct? so not a bad effect on battery :) – g.b.1981 Jul 8 '11 at 17:14
@g-b-1981 yes. it almost not using battery – Grigory Kalabin Jul 8 '11 at 18:04
feedback

Your Answer

 
or
required, but never shown

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