Search code examples
javaandroidandroid-intentandroid-locationandroid-settings

Enable google location services intent


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


Solution

  • Try this:

    Intent intent= new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS);
        startActivity(intent);