0

is it possible to take the user to Settings -> Location using intent, so he would be able to enable the app go get the device location?

This is the screen I want to go to:

enter image description here

Darko Petkovski
  • 3,892
  • 13
  • 53
  • 117

1 Answers1

2

Try this:

Intent intent= new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS);
    startActivity(intent);
Srikanth Roopa
  • 1,782
  • 2
  • 13
  • 19