简体   繁体   English

在Android中自动同步和GPS

[英]Auto sync and GPS in android

Can anyone provide me some code snippet for enabling/disabling auto sync and GPS in android? 任何人都可以提供一些代码片段来启用/禁用Android中的自动同步和GPS吗? 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进行设置

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM