What is difference between contentprovider and contentResolver in android
问题 What is the difference between ContentProviders and ContentResolver ? I do not want for the SQLite database. I am developing an application for media. 回答1: I found some explanation here. In summary Content Resolver resolves a URI to a specific Content provider . Content Provider provides an interface to query content. The way to query a content provider is contentResolverInstance.query(URI,.....) 回答2: ContentProviders are used to abstract the database from other parts and acts as an interface