多个表的自定义内容提供程序
有人可以帮助编写多个表的自定义内容提供程序。我可以为单个表编写,但对于多个表,我没有找到任何好的例子。
Can someone help in writing a Custom Content Provider for Multiple tables. I can write for a single table but for multiple table I did not find any good example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现有答案的几乎重复。比较这个问题与解答,讨论 ContentProvider 中 LEFT JOIN 的使用。
请注意,总而言之,ContentProviders 的预期用途是为内容 URI 中的每个路径使用单个表。在一次调用中使用联接或索引多个表仍然被视为不符合规范的行为。并不是说这不好,只是没有多少人有这样的想法。
A near duplicate of an existing answer. Compare this question and answer, discussing use of LEFT JOIN inside your ContentProvider.
Note that, all in all, the expected use of ContentProviders is to use single tables for each path in your Content URI. It's still seen as something out of the norm to use join or index multiple tables in one call. Not to say it's bad, just that there aren't many people thinking in those terms.