为什么应该在 Android 中使用自定义内容提供程序?
使用自定义内容提供商有哪些优势? 为什么这样的内容提供者优于包装 SQL 查询的普通类?
What are advantages of using custom content provider?
Why such content provider is superior of plain class that wraps SQL queries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
内容提供程序可以从其他进程中使用,并且是 Android 上的某些机制(例如全局搜索)所需要的。还有一些可用的类可以帮助您处理内容提供者,从而节省您管理内存的一些麻烦。
Content providers can be used from other processes and are required by some mechanisms on Android like the global search. There are also some classes available that help you deal with content providers that save you some of the hassle of manging memory.
其他应用将能够访问您的数据。
您可以在内容提供程序中包装和抽象大量查询逻辑,并限制访问。
您将能够依靠系统来允许诸如托管查询之类的事情。
Other apps will be able to access your data.
You can wrap and abstract a lot of the query logic in your content provider, and limit access.
You will be able to lean on the system to allow for things like managed queries.