Android 与自定义数据自动同步
情况:我的应用程序有一个帐户,是按照 http: 中的示例代码创建的: //developer.android.com/resources/samples/SampleSyncAdapter/index.html。当从“帐户和”中单击帐户时;在同步设置屏幕上,我看到“同步联系人”复选框。当此复选框处于活动状态时,我的自定义同步会在后台成功运行。
问题:我没有同步联系人,而是同步应用程序的自定义数据。我希望复选框显示“同步历史数据”之类的
内容 问题:有谁知道我在哪里可以找到有关如何执行此操作的一些文档,或者我需要采取哪些步骤来搜索文档?任何有助于扩大/指导我的搜索的建议或关键字也将不胜感激。
Situation: I have an account for my application that I created following the example code at http://developer.android.com/resources/samples/SampleSyncAdapter/index.html. When clicking on the account from the Account & Sync Settings screen, I see a "Sync Contacts" checkbox. When this checkbox is active, my custom sync successfully runs in the background.
Problem: I'm not syncing contacts, I'm syncing the application's custom data. I would like the checkbox to say something like "Sync Historic Data"
Question: Does anyone know where I can find some documentation on how to do this, or what steps I need to take that I can search for documentation for? Any advice or keywords to help broaden/guide my search would be appreciated as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将自定义
android:label
属性添加到 AndroidManifest.xml 中内容提供程序的定义中即可。这里是一个很好的基本教程涵盖 SyncAdapter 的基础知识。
Just add a custom
android:label
attribute to the definition of your content provider in AndroidManifest.xml.Here is a nice basic tutorial covering the basics on the SyncAdapter.