Pregunta

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?

¿Fue útil?

Solución

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top