What does the android intend to show localization settings?

I am sure that this can be answered very easily. I just did not find the intent identifier for this job.

I want to show the localization settings page where the user can select "enable localization via Wi-Fi ..."

      Intent intent = new Intent( ??? );
      startActivity(intent);
+3
source share
1 answer

This is what you are looking for:

 Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
 startActivity(intent);
+6
source

Source: https://habr.com/ru/post/1770625/


All Articles