帮助内容提供商
我已经在这个内容提供商上工作了几天,并且一直在网上寻找答案。
有人可以帮我澄清一下吗?
我正在尝试将我的 android sqlite DB 从一个应用程序转移到另一个应用程序,并且我想使用内容提供程序。我已经写出来了,但它不起作用。
我的问题是,内容提供程序和 CONTENT_URI 是否位于源应用程序的同一包中?然后我从其他应用程序调用它?
I've been working on this content provider for a few days now, and I've been looking for answers online.
Could someone please clarify for me.
I am trying to transfer my android sqlite DB from one app to another, and I want to use the content provider. I have it written out, but it is not working.
My question is, does the content provider and the CONTENT_URI go in the same package of the source app? And then I call to it from the other app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,内容提供程序和 CONTENT_URI 可以位于源应用程序的同一包中。对于要调用它的其他应用程序,您必须具有相同的 CONTENT_URI,然后内容解析器将为您完成其余的工作。
Yes, content provider and the CONTENT_URI can go in the same package of the source app. For the other app to call to it, you will have to have the same CONTENT_URI and then, the content resolver will do the rest for you.