Android 如何以编程方式启用/禁用自动同步
我需要知道如何以编程方式打开和关闭自动同步。
I need to know how to toggle auto sync on and off programmatically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要知道如何以编程方式打开和关闭自动同步。
I need to know how to toggle auto sync on and off programmatically.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
我认为您正在寻找
文档所说的内容:
因此,不要忘记将权限添加到manifest.xml中:
这应该禁用/启用所有同步。
@Sajmon:我更新了这个我认为非常有用的答案(我在我的个人项目中使用这个)。
I think you are looking for
What docs says:
So don't forget to add permission into manifest.xml:
This should disable / enable all the syncs.
@Sajmon: I updated this i think very useful answer (i'm using this in my personal project).
我认为你想要的是以下内容:
I think what you want is the following:
以编程方式同步帐户的代码:
同步一次:
自动按时间间隔同步:
如果您想要同步帐户< strong>once,调用first方法,如果你想同步在某个时间间隔,你必须调用 Second 方法并传递秒(如 10 秒)作为其中的参数。
完成
Code for Sync Accounts Programmatically:
Sync once:
Sync on time interval automatically:
If you want to sync accounts once, call first method and if you want to sync on some time of interval you have to call second method and pass seconds (Like 10 Seconds) as arguments in it.
Done
本是对的。
您需要使用
您还需要添加权限“WRITE_SYNC_SETTINGS”
Ben is correct.
You need to use
you will also need to add permission "WRITE_SYNC_SETTINGS"