I want my RTT app to be able to control when/whether we are receiving location updates, no matter from GPS or network. I can easily control GPS status with a GpsStatus.Listener but I cannot find the equivalent for network updates. For example, the event would fire if we enter an area with no network or wifi, or a timeout will occur like in the case covered by GpsStatus.GPS_EVENT_SATELLITE_STATUS
Codes snippets here:
mGPSReceiver = (LocationManager)this.getSystemService(Context.LOCATION_SERVICE);
mLocationListener = new LocationListener() {
private Location mLastLocation;
@Override
public void onLocationChanged(final Location location) {
// STUFF
}
@Override
public void onProviderDisabled(final String provider) {
if (mGPSReceiver.getProviders(true).size() == 0) { // WRONG
PhoneStatusService.this.setGPSStatus(false);
}
}
@Override
public void onProviderEnabled(final String provider) {
}
@Override
public void onStatusChanged(final String provider, final int status, final Bundle extras) {
}
};
mGPSListener = new GpsStatus.Listener() {
@Override
public void onGpsStatusChanged(final int event) {
switch (event) {
case GpsStatus.GPS_EVENT_STARTED:
break;
case GpsStatus.GPS_EVENT_FIRST_FIX:
setGPSStatus(true);
break;
case GpsStatus.GPS_EVENT_STOPPED:
break;
case GpsStatus.GPS_EVENT_SATELLITE_STATUS:
final boolean isGPSFixing = (SystemClock.elapsedRealtime() - mLastLocationMillis) < GPS_TIMEOUT;
setGPSStatus(isGPSFixing);
break;
default:
break;
}
}
};
mGPSReceiver.addGpsStatusListener(mGPSListener);
mGPSReceiver.requestLocationUpdates(LocationManager.GPS_PROVIDER, GPS_FIX_TIME, 0,
mLocationListener);
mGPSReceiver.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, GPS_FIX_TIME, 0,
mLocationListener);