requestLocationUpdate allows you to set the interval distance for notifications. i wanted to know how does it work ? i mean does the manger location simply screen out unwanted changes? or it uses android utility to detect if the device had moved, and by so using less battery.

Thanks.

link|improve this question

57% accept rate
feedback

1 Answer

given the documentation I think it's fair to assume the interval distance just screens out certain changes. It specifically mentions saving battery power w/ the time interval, but not with the minDistance.

http://developer.android.com/reference/android/location/LocationManager.html#requestLocationUpdates(long

"The frequency of notification may be controlled using the minTime and minDistance parameters. If minTime is greater than 0, the LocationManager could potentially rest for minTime milliseconds between location updates to conserve power. If minDistance is greater than 0, a location will only be broadcasted if the device moves by minDistance meters. To obtain notifications as frequently as possible, set both parameters to 0."

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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