如何定义 Android 上 SyncAdapter 更新的频率?
为同步定义的 ContentProvided 是虚拟的(根据此方法)。
ContentProvided defined for synchronization is dummy (in accordance with this approach).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 API > 8、(95% 的设备)使用
ContentResolver.addPeriodicSync()
如果 API = 7,(截至 2102 年 3 月,5.5% 的设备)创建具有定期计时器回调的服务,并调用
ContentResolver.requestSync()
。API< 6.不支持syncAdapter,所以不用担心。
If API > 8, (95% of devices) use
ContentResolver.addPeriodicSync()
If API = 7, (5.5% of devices as of Mar 2102) create a service with a periodic timer callback, and call
ContentResolver.requestSync()
.API < 6 does not support syncAdapter, so no worries.