Is it possible to turn on LocationProviders(GPS Provider/Network Providers) on Device programatically, if it is turned off?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

No, it is not, but you can open the Location services settings window:

context.startActivity(new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS));
link|improve this answer
feedback

Use following code to start GPS

        locationManager = ( LocationManager ) getSystemService ( Context.LOCATION_SERVICE );
        locationListener = new LocListener();
        locationManager.requestLocationUpdates ( LocationManager.GPS_PROVIDER, 0, 0, locationListener );

and following code to stop GPS

        locationManager.removeUpdates( locationListener );
link|improve this answer
i am talking about turning on (Settings-->Location & Security -->Use wireless Networks/Use GPS satellites) options of android device programatically. – Srizan Sagar Jan 24 at 9:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.