Specify intervals for Location Manager to broadcast current location in Android
- by LordSnoutimus
Hi,
Is there anyway to specify the time intervals that the Location Manager broadcasts the current location?
I am using a method called startListening:
public void startListening() {
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER,
0,
0,
this
);
}
Thanks