Android 同步管理器
如何从自己的程序强制数据同步(日历、联系人)?
互联网连接不稳定,因此当出现 WiFi 连接时,我想强制同步。我在谷歌上搜索了有关同步管理器的信息,但没有太多如何使用它的信息。
How to force data synchronization (calendar, contacts) from own program?
The internet connectivity is not stable, so when a WiFi connection occurs, I want to force the sync. I've googled sth about synchronization manager, but there is not much info how to use it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我得到了答案:
tnx to Toby http:/ /tobykurien.blogspot.com/2010/08/batteryfu-android-application.html?showComment=1289567283337#c6639350316170925780
I got the answer:
tnx to Toby http://tobykurien.blogspot.com/2010/08/batteryfu-android-application.html?showComment=1289567283337#c6639350316170925780
为了了解连接是否发生变化,请编写 android.net 的广播接收器。 conn.CONNECTIVITY_CHANGE。然后向 ConnectivityManager 询问连接详细信息。如果更改,请同步。
此帖子是相关的。
In order to know whether connectivity has changed, write a broadcast receiver of android.net.conn.CONNECTIVITY_CHANGE. And then ask for connection details to ConnectivityManager. If changed, synchronize.
This post is related.