Question

I am trying to call requestLocationUpdates using above:

locationUpdateRequester.requestLocationUpdates(900000, 75, criteria, locationListenerPendingIntent);

When it call requestLocationUpdates again after approx 15 min and 75 meter distance cover by device?

Was it helpful?

Solution

It checks at every 15 min interval, the change in distance. Whenever the distance increases above 75 meter, onLocationChanged() is invoked.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top