How can we turn on/off GPS programatically without going on setting screen in android?
views:
77answers:
2
+1
A:
You cannot do this.
This is important for privacy reasons.
http://stackoverflow.com/questions/1051649/how-to-programmatically-enable-gps-in-android-cupcake
Umesh
2010-10-07 04:40:56
A:
// Remove the listener you previously added
locationManager.removeUpdates(locationListener);
got from http://developer.android.com/guide/topics/location/obtaining-user-location.html
arun
2010-10-07 12:06:40