开发者

What's the android intent to show up the localization settings?

开发者 https://www.devze.com 2023-01-21 04:51 出处:网络
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 localizati开发者_如何学Goon settings page, where the user can select \"turn on loca

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 localizati开发者_如何学Goon settings page, where the user can select "turn on localization through wifi..."

      Intent intent = new Intent( ??? );
      startActivity(intent);


Is this what you are looking for:

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

精彩评论

暂无评论...
验证码 换一张
取 消