views:

38

answers:

1

I'm sure this can be answered really easily. I just do not find the intent id for this job.

I want to show up that localization settings page, where the user can select "turn on localization through wifi..."

      Intent intent = new Intent( ??? );
      startActivity(intent);
+4  A: 

Is this what you are looking for:

 Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
 startActivity(intent);
Scoobler