Android 同步管理器

发布于 2024-10-02 11:40:49 字数 103 浏览 1 评论 0原文

如何从自己的程序强制数据同步(日历、联系人)?

互联网连接不稳定,因此当出现 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱给你人给你 2024-10-09 11:40:49

我得到了答案:

Bundle extras = new Bundle();
extras.putBoolean(ContentResolver.SYNC_EXTRAS_FORCE, true);
context.getContentResolver().startSync(null, extras); 

tnx to Toby http:/ /tobykurien.blogspot.com/2010/08/batteryfu-android-application.html?showComment=1289567283337#c6639350316170925780

I got the answer:

Bundle extras = new Bundle();
extras.putBoolean(ContentResolver.SYNC_EXTRAS_FORCE, true);
context.getContentResolver().startSync(null, extras); 

tnx to Toby http://tobykurien.blogspot.com/2010/08/batteryfu-android-application.html?showComment=1289567283337#c6639350316170925780

旧人九事 2024-10-09 11:40:49

为了了解连接是否发生变化,请编写 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文