本文介绍了Android中的contentprovider和contentResolver有什么区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
ContentProviders 和 ContentResolver 有什么区别?我不想使用SQLite
数据库.我正在开发媒体应用程序.
What is the difference between ContentProviders and ContentResolver? I do not want for the SQLite
database. I am developing an application for media.
推荐答案
我找到了一些解释此处.总结
I found some explanation here. In summary
Content Resolver 将URI解析为特定的 Content provider .
Content Resolver resolves a URI to a specific Content provider.
内容提供程序提供了一个查询内容的接口.
Content Provider provides an interface to query content.
查询内容提供者的方法是contentResolverInstance.query(URI,.....)
The way to query a content provider is contentResolverInstance.query(URI,.....)
这篇关于Android中的contentprovider和contentResolver有什么区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!