Is there a way to get notified if one of the LocationProviders is enabled/disabled by the user (during running of the application)?
I don't want to use the methods in LocationListener (onProviderEnabled / onProviderDisabled) because they work only if I have already registered a listener. But I want notification about availability of the provider independent of registering the listeners...
Any ideas?
Maybe via BrodcastReceiver? (but didn't find a matching intent)
The worst solution would be a polling on LocationManager.isProviderEnabled, but I would avoid that if possible...
Thanks and regards



