Darko Petkovski
Darko Petkovski

Reputation: 3912

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

Upvotes: 0

Views: 2216

Answers (1)

Srikanth Roopa
Srikanth Roopa

Reputation: 1790

Try this:

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

Upvotes: 2

Related Questions