What is difference between contentprovider and contentResolver in android

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,.....)


Two layered Abstraction :

ContentResolver --> ContentProvider -->SQLiteDatabase

The main difference is this as mentioned in other answers.

ContentProvider exposes private data of your application to external application
while
ContentResolver provides the right ContentProvider among all the ContentProviders using a URI.

Deeper Understanding (of two-layered abstraction)

Let's take a detour.
We all know that when we create an SQLite database then the database remains private to your application which means, you just can not share your app data with any other external application.

How data is shared then?

ContentProvider and ContentResolver are part of android.content package. These two classes work together to provide robust, secure data sharing model among applications.
ContentProvider exposes data stored in the SQLite database to other application without telling them the underlying implementation of your database.
So it abstracts the SQliteDatabase. But wait there is a catch !!!
The external application can not directly access ContentProvider. For that, you need to first interact with another class called ContentResolver Think ContentResolver as a ContentProvider finder. There is only one instance of it and all the ContentProviders of your Device are registered with a simple Namespace URI. If you want to reach a particular ContentProvider you just need to know its URI. Pass it to ContentResolver and it will find the Provider using the URI.
Now lets have a look at the most important method getContentResolver().query(URI,String[] proj.....)

What happens when getContentResolver().query(URI,String[] proj.....) gets called

query() method belongs to ContentResolver class however it invokes the abstract query() method of resolved ContentProvider and returns Cursor object.
In this way, the External application gets exposed to the private database via two abstraction layers.

Just to add more points
You cannot create your own ContentResolver class but you can always create your own ContentProvider class

Hope you have a better understanding
You can also see some sample code here for creating SQLitedatabase, ContentProvider etc, But it's not well documented.


ContentProviders are used to abstract the database from other parts and acts as an interface between your database and UI/other classes. You must create your own ContentProvider to share your app data with other apps.

ContentResolver is used to select the right ContentProvider based on the ContentUris. A ContentUri may look like

content://com.android.contacts/contacts/3

  • content:// is called scheme and indicates that it is a ContentUri.
  • com.android.contacts is called Content authority and ContentResolver uses it to resolve to a unique provider (in this case, ContactProvider).
  • contacts is the path that identify some subset of the provider's data (for example, Table name).
  • 3 is the id used to uniquely identify a row within the subset of data.

enter image description here

NOTE : Your own app can also use this route to handle its data.

See Content Providers in Android for more detail


In 2021 :D

Content Resolver : For Data Request

Content Provider : For Data Response