I\'m on Android 2.3.7 and I\'m trying to write a BroadcastReceiver that will get called when the user turns GPS on/off (ie: by tapping on the \"use GPS satellites\" in the optio
Use a LocationListener and override OnStatusChanged.
OnStatusChanged
You can attach your listener using the requestLocationUpdates(String, long, float, LocationListener) method on your LocationManager instance.
requestLocationUpdates(String, long, float, LocationListener)
LocationManager