I wish to receive a notification when the user enables or disables either Network or GPS locations, and importantly I wish to know which one they have changed and how. I have a
On the Receiver you could simply check which providers are enabled:
LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE) List providers = lm.getProviders(true);
In this way you obtain all the enable providers.