Domanda

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?

È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top