androidlocation-provider

Turn on Location Providers Programmatically in Android


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


Solution

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

    context.startActivity(new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS));