开发者

Auto sync and GPS in android

开发者 https://www.devze.com 2023-02-22 03:57 出处:网络
Can anyone provide me some code snip开发者_StackOverflow中文版pet for enabling/disabling auto sync and GPS in android? I have been trying for long but no success.

Can anyone provide me some code snip开发者_StackOverflow中文版pet for enabling/disabling auto sync and GPS in android? I have been trying for long but no success.

Thanks in advance.


without intervention by the user, this is not possible, but you can start the Intent for the settings

Intent gpsOptionsIntent = new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS); 
this.startActivity(gpsOptionsIntent);  
0

精彩评论

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