page.title=Content Provider Basics @jd:body
A content provider manages access to a central repository of data. A provider is part of an Android application, which often provides its own UI for working with the data. However, content providers are primarily intended to be used by other applications, which access the provider using a provider client object. Together, providers and provider clients offer a consistent, standard interface to data that also handles inter-process communication and secure data access.
This topic describes the basics of the following:
A content provider presents data to external applications as one or more tables that are similar to the tables found in a relational database. A row represents an instance of some type of data the provider collects, and each column in the row represents an individual piece of data collected for an instance.
For example, one of the built-in providers in the Android platform is the user dictionary, which stores the spellings of non-standard words that the user wants to keep. Table 1 illustrates what the data might look like in this provider's table:
word | app id | frequency | locale | _ID |
---|---|---|---|---|
mapreduce | user1 | 100 | en_US | 1 |
precompiler | user14 | 200 | fr_FR | 2 |
applet | user2 | 225 | fr_CA | 3 |
const | user1 | 255 | pt_BR | 4 |
int | user5 | 100 | en_UK | 5 |
In table 1, each row represents an instance of a word that might not be
found in a standard dictionary. Each column represents some data for that word, such as the
locale in which it was first encountered. The column headers are column names that are stored in
the provider. To refer to a row's locale, you refer to its locale
column. For
this provider, the _ID
column serves as a "primary key" column that
the provider automatically maintains.
Note: A provider isn't required to have a primary key, and it isn't required
to use _ID
as the column name of a primary key if one is present. However,
if you want to bind data from a provider to a {@link android.widget.ListView}, one of the
column names has to be _ID
. This requirement is explained in more detail in the
section Displaying query results.
An application accesses the data from a content provider with a {@link android.content.ContentResolver} client object. This object has methods that call identically-named methods in the provider object, an instance of one of the concrete subclasses of {@link android.content.ContentProvider}. The {@link android.content.ContentResolver} methods provide the basic "CRUD" (create, retrieve, update, and delete) functions of persistent storage.
The {@link android.content.ContentResolver} object in the client application's process and the {@link android.content.ContentProvider} object in the application that owns the provider automatically handle inter-process communication. {@link android.content.ContentProvider} also acts as an abstraction layer between its repository of data and the external appearance of data as tables.
Note: To access a provider, your application usually has to request specific permissions in its manifest file. This is described in more detail in the section Content Provider Permissions
For example, to get a list of the words and their locales from the User Dictionary Provider, you call {@link android.content.ContentResolver#query ContentResolver.query()}. The {@link android.content.ContentResolver#query query()} method calls the {@link android.content.ContentProvider#query ContentProvider.query()} method defined by the User Dictionary Provider. The following lines of code show a {@link android.content.ContentResolver#query ContentResolver.query()} call:
// Queries the user dictionary and returns results mCursor = getContentResolver().query( UserDictionary.Words.CONTENT_URI, // The content URI of the words table mProjection, // The columns to return for each row mSelectionClause // Selection criteria mSelectionArgs, // Selection criteria mSortOrder); // The sort order for the returned rows
Table 2 shows how the arguments to {@link android.content.ContentResolver#query query(Uri,projection,selection,selectionArgs,sortOrder)} match an SQL SELECT statement:
query() argument | SELECT keyword/parameter | Notes |
---|---|---|
Uri |
FROM table_name |
Uri maps to the table in the provider named table_name. |
projection |
col,col,col,... |
projection is an array of columns that should be included for each row
retrieved.
|
selection |
WHERE col = value |
selection specifies the criteria for selecting rows. |
selectionArgs |
(No exact equivalent. Selection arguments replace ? placeholders in the
selection clause.)
|
|
sortOrder |
ORDER BY col,col,... |
sortOrder specifies the order in which rows appear in the returned
{@link android.database.Cursor}.
|
A content URI is a URI that identifies data in a provider. Content URIs include the symbolic name of the entire provider (its authority) and a name that points to a table (a path). When you call a client method to access a table in a provider, the content URI for the table is one of the arguments.
In the preceding lines of code, the constant {@link android.provider.UserDictionary.Words#CONTENT_URI} contains the content URI of the user dictionary's "words" table. The {@link android.content.ContentResolver} object parses out the URI's authority, and uses it to "resolve" the provider by comparing the authority to a system table of known providers. The {@link android.content.ContentResolver} can then dispatch the query arguments to the correct provider.
The {@link android.content.ContentProvider} uses the path part of the content URI to choose the table to access. A provider usually has a path for each table it exposes.
In the previous lines of code, the full URI for the "words" table is:
content://user_dictionary/words
where the user_dictionary
string is the provider's authority, and
words
string is the table's path. The string
content://
(the scheme) is always present,
and identifies this as a content URI.
Many providers allow you to access a single row in a table by appending an ID value
to the end of the URI. For example, to retrieve a row whose _ID
is
4
from user dictionary, you can use this content URI:
Uri singleUri = ContentUris.withAppendedId(UserDictionary.Words.CONTENT_URI,4);
You often use id values when you've retrieved a set of rows and then want to update or delete one of them.
Note: The {@link android.net.Uri} and {@link android.net.Uri.Builder} classes contain convenience methods for constructing well-formed Uri objects from strings. The {@link android.content.ContentUris} contains convenience methods for appending id values to a URI. The previous snippet uses {@link android.content.ContentUris#withAppendedId withAppendedId()} to append an id to the UserDictionary content URI.
This section describes how to retrieve data from a provider, using the User Dictionary Provider as an example.
For the sake of clarity, the code snippets in this section call {@link android.content.ContentResolver#query ContentResolver.query()} on the "UI thread"". In actual code, however, you should do queries asynchronously on a separate thread. One way to do this is to use the {@link android.content.CursorLoader} class, which is described in more detail in the Loaders guide. Also, the lines of code are snippets only; they don't show a complete application.
To retrieve data from a provider, follow these basic steps:
To retrieve data from a provider, your application needs "read access permission" for the
provider. You can't request this permission at run-time; instead, you have to specify that
you need this permission in your manifest, using the
<uses-permission>
element and the exact permission name defined by the
provider. When you specify this element in your manifest, you are in effect "requesting" this
permission for your application. When users install your application, they implicitly grant
this request.
To find the exact name of the read access permission for the provider you're using, as well as the names for other access permissions used by the provider, look in the provider's documentation.
The role of permissions in accessing providers is described in more detail in the section Content Provider Permissions.
The User Dictionary Provider defines the permission
android.permission.READ_USER_DICTIONARY
in its manifest file, so an
application that wants to read from the provider must request this permission.
The next step in retrieving data a provider is to construct a query. This first snippet defines some variables for accessing the User Dictionary Provider:
// A "projection" defines the columns that will be returned for each row String[] mProjection = { UserDictionary.Words._ID, // Contract class constant for the _ID column name UserDictionary.Words.WORD, // Contract class constant for the word column name UserDictionary.Words.LOCALE // Contract class constant for the locale column name }; // Defines a string to contain the selection clause String mSelectionClause = null; // Initializes an array to contain selection arguments String[] mSelectionArgs = {""};
The next snippet shows how to use {@link android.content.ContentResolver#query ContentResolver.query()}, using the User Dictionary Provider as an example. A provider client query is similar to an SQL query, and it contains a set of columns to return, a set of selection criteria, and a sort order.
The set of columns that the query should return is called a projection
(the variable mProjection
).
The expression that specifies the rows to retrieve is split into a selection clause and
selection arguments. The selection clause is a combination of logical and Boolean expressions,
column names, and values (the variable mSelectionClause
). If you specify the
replaceable parameter ?
instead of a value, the query method retrieves the value
from the selection arguments array (the variable mSelectionArgs
).
In the next snippet, if the user doesn't enter a word, the selection clause is set to
null
, and the query returns all the words in the provider. If the user enters
a word, the selection clause is set to UserDictionary.Words.WORD + " = ?"
and
the first element of selection arguments array is set to the word the user enters.
/* * This defines a one-element String array to contain the selection argument. */ String[] mSelectionArgs = {""}; // Gets a word from the UI mSearchString = mSearchWord.getText().toString(); // Remember to insert code here to check for invalid or malicious input. // If the word is the empty string, gets everything if (TextUtils.isEmpty(mSearchString)) { // Setting the selection clause to null will return all words mSelectionClause = null; mSelectionArgs[0] = ""; } else { // Constructs a selection clause that matches the word that the user entered. mSelectionClause = UserDictionary.Words.WORD + " = ?"; // Moves the user's input string to the selection arguments. mSelectionArgs[0] = mSearchString; } // Does a query against the table and returns a Cursor object mCursor = getContentResolver().query( UserDictionary.Words.CONTENT_URI, // The content URI of the words table mProjection, // The columns to return for each row mSelectionClause // Either null, or the word the user entered mSelectionArgs, // Either empty, or the string the user entered mSortOrder); // The sort order for the returned rows // Some providers return null if an error occurs, others throw an exception if (null == mCursor) { /* * Insert code here to handle the error. Be sure not to use the cursor! You may want to * call android.util.Log.e() to log this error. * */ // If the Cursor is empty, the provider found no matches } else if (mCursor.getCount() < 1) { /* * Insert code here to notify the user that the search was unsuccessful. This isn't necessarily * an error. You may want to offer the user the option to insert a new row, or re-type the * search term. */ } else { // Insert code here to do something with the results }
This query is analogous to the SQL statement:
SELECT _ID, word, locale FROM words WHERE word = <userinput> ORDER BY word ASC;
In this SQL statement, the actual column names are used instead of contract class constants.
If the data managed by the content provider is in an SQL database, including external untrusted data into raw SQL statements can lead to SQL injection.
Consider this selection clause:
// Constructs a selection clause by concatenating the user's input to the column name String mSelectionClause = "var = " + mUserInput;
If you do this, you're allowing the user to concatenate malicious SQL onto your SQL statement.
For example, the user could enter "nothing; DROP TABLE *;" for mUserInput
, which
would result in the selection clause var = nothing; DROP TABLE *;
. Since the
selection clause is treated as an SQL statement, this might cause the provider to erase all of
the tables in the underlying SQLite database (unless the provider is set up to catch
SQL injection attempts).
To avoid this problem, use a selection clause that uses ?
as a replaceable
parameter and a separate array of selection arguments. When you do this, the user input
is bound directly to the query rather than being interpreted as part of an SQL statement.
Because it's not treated as SQL, the user input can't inject malicious SQL. Instead of using
concatenation to include the user input, use this selection clause:
// Constructs a selection clause with a replaceable parameter String mSelectionClause = "var = ?";
Set up the array of selection arguments like this:
// Defines an array to contain the selection arguments String[] selectionArgs = {""};
Put a value in the selection arguments array like this:
// Sets the selection argument to the user's input selectionArgs[0] = mUserInput;
A selection clause that uses ?
as a replaceable parameter and an array of
selection arguments array are preferred way to specify a selection, even if the provider isn't
based on an SQL database.
The {@link android.content.ContentResolver#query ContentResolver.query()} client method always returns a {@link android.database.Cursor} containing the columns specified by the query's projection for the rows that match the query's selection criteria. A {@link android.database.Cursor} object provides random read access to the rows and columns it contains. Using {@link android.database.Cursor} methods, you can iterate over the rows in the results, determine the data type of each column, get the data out of a column, and examine other properties of the results. Some {@link android.database.Cursor} implementations automatically update the object when the provider's data changes, or trigger methods in an observer object when the {@link android.database.Cursor} changes, or both.
Note: A provider may restrict access to columns based on the nature of the object making the query. For example, the Contacts Provider restricts access for some columns to sync adapters, so it won't return them to an activity or service.
If no rows match the selection criteria, the provider returns a {@link android.database.Cursor} object for which {@link android.database.Cursor#getCount Cursor.getCount()} is 0 (an empty cursor).
If an internal error occurs, the results of the query depend on the particular provider. It may
choose to return null
, or it may throw an {@link java.lang.Exception}.
Since a {@link android.database.Cursor} is a "list" of rows, a good way to display the contents of a {@link android.database.Cursor} is to link it to a {@link android.widget.ListView} via a {@link android.widget.SimpleCursorAdapter}.
The following snippet continues the code from the previous snippet. It creates a {@link android.widget.SimpleCursorAdapter} object containing the {@link android.database.Cursor} retrieved by the query, and sets this object to be the adapter for a {@link android.widget.ListView}:
// Defines a list of columns to retrieve from the Cursor and load into an output row String[] mWordListColumns = { UserDictionary.Words.WORD, // Contract class constant containing the word column name UserDictionary.Words.LOCALE // Contract class constant containing the locale column name }; // Defines a list of View IDs that will receive the Cursor columns for each row int[] mWordListItems = { R.id.dictWord, R.id.locale}; // Creates a new SimpleCursorAdapter mCursorAdapter = new SimpleCursorAdapter( getApplicationContext(), // The application's Context object R.layout.wordlistrow, // A layout in XML for one row in the ListView mCursor, // The result from the query mWordListColumns, // A string array of column names in the cursor mWordListItems, // An integer array of view IDs in the row layout 0); // Flags (usually none are needed) // Sets the adapter for the ListView mWordList.setAdapter(mCursorAdapter);
Note: To back a {@link android.widget.ListView} with a
{@link android.database.Cursor}, the cursor must contain a column named _ID
.
Because of this, the query shown previously retrieves the _ID
column for the
"words" table, even though the {@link android.widget.ListView} doesn't display it.
This restriction also explains why most providers have a _ID
column for each of
their tables.
Rather than simply displaying query results, you can use them for other tasks. For example, you can retrieve spellings from the user dictionary and then look them up in other providers. To do this, you iterate over the rows in the {@link android.database.Cursor}:
// Determine the column index of the column named "word" int index = mCursor.getColumnIndex(UserDictionary.Words.WORD); /* * Only executes if the cursor is valid. The User Dictionary Provider returns null if * an internal error occurs. Other providers may throw an Exception instead of returning null. */ if (mCursor != null) { /* * Moves to the next row in the cursor. Before the first movement in the cursor, the * "row pointer" is -1, and if you try to retrieve data at that position you will get an * exception. */ while (mCursor.moveToNext()) { // Gets the value from the column. newWord = mCursor.getString(index); // Insert code here to process the retrieved word. ... // end of while loop } } else { // Insert code here to report an error if the cursor is null or the provider threw an exception. }
{@link android.database.Cursor} implementations contain several "get" methods for retrieving different types of data from the object. For example, the previous snippet uses {@link android.database.Cursor#getString getString()}. They also have a {@link android.database.Cursor#getType getType()} method that returns a value indicating the data type of the column.
A provider's application can specify permissions that other applications must have in order to access the provider's data. These permissions ensure that the user knows what data an application will try to access. Based on the provider's requirements, other applications request the permissions they need in order to access the provider. End users see the requested permissions when they install the application.
If a provider's application doesn't specify any permissions, then other applications have no access to the provider's data. However, components in the provider's application always have full read and write access, regardless of the specified permissions.
As noted previously, the User Dictionary Provider requires the
android.permission.READ_USER_DICTIONARY
permission to retrieve data from it.
The provider has the separate android.permission.WRITE_USER_DICTIONARY
permission for inserting, updating, or deleting data.
To get the permissions needed to access a provider, an application requests them with a
<uses-permission>
element in its manifest file. When the Android Package Manager installs the application, a user
must approve all of the permissions the application requests. If the user approves all of them,
Package Manager continues the installation; if the user doesn't approve them, Package Manager
aborts the installation.
The following
<uses-permission>
element requests read access to the User Dictionary Provider:
<uses-permission android:name="android.permission.READ_USER_DICTIONARY">
The impact of permissions on provider access is explained in more detail in the Security and Permissions guide.
In the same way that you retrieve data from a provider, you also use the interaction between a provider client and the provider's {@link android.content.ContentProvider} to modify data. You call a method of {@link android.content.ContentResolver} with arguments that are passed to the corresponding method of {@link android.content.ContentProvider}. The provider and provider client automatically handle security and inter-process communication.
To insert data into a provider, you call the {@link android.content.ContentResolver#insert ContentResolver.insert()} method. This method inserts a new row into the provider and returns a content URI for that row. This snippet shows how to insert a new word into the User Dictionary Provider:
// Defines a new Uri object that receives the result of the insertion Uri mNewUri; ... // Defines an object to contain the new values to insert ContentValues mNewValues = new ContentValues(); /* * Sets the values of each column and inserts the word. The arguments to the "put" * method are "column name" and "value" */ mNewValues.put(UserDictionary.Words.APP_ID, "example.user"); mNewValues.put(UserDictionary.Words.LOCALE, "en_US"); mNewValues.put(UserDictionary.Words.WORD, "insert"); mNewValues.put(UserDictionary.Words.FREQUENCY, "100"); mNewUri = getContentResolver().insert( UserDictionary.Word.CONTENT_URI, // the user dictionary content URI mNewValues // the values to insert );
The data for the new row goes into a single {@link android.content.ContentValues} object, which
is similar in form to a one-row cursor. The columns in this object don't need to have the
same data type, and if you don't want to specify a value at all, you can set a column
to null
using {@link android.content.ContentValues#putNull ContentValues.putNull()}.
The snippet doesn't add the _ID
column, because this column is maintained
automatically. The provider assigns a unique value of _ID
to every row that is
added. Providers usually use this value as the table's primary key.
The content URI returned in newUri
identifies the newly-added row, with
the following format:
content://user_dictionary/words/<id_value>
The <id_value>
is the contents of _ID
for the new row.
Most providers can detect this form of content URI automatically and then perform the requested
operation on that particular row.
To get the value of _ID
from the returned {@link android.net.Uri}, call
{@link android.content.ContentUris#parseId ContentUris.parseId()}.
To update a row, you use a {@link android.content.ContentValues} object with the updated
values just as you do with an insertion, and selection criteria just as you do with a query.
The client method you use is
{@link android.content.ContentResolver#update ContentResolver.update()}. You only need to add
values to the {@link android.content.ContentValues} object for columns you're updating. If you
want to clear the contents of a column, set the value to null
.
The following snippet changes all the rows whose locale has the language "en" to a
have a locale of null
. The return value is the number of rows that were updated:
// Defines an object to contain the updated values ContentValues mUpdateValues = new ContentValues(); // Defines selection criteria for the rows you want to update String mSelectionClause = UserDictionary.Words.LOCALE + "LIKE ?"; String[] mSelectionArgs = {"en_%"}; // Defines a variable to contain the number of updated rows int mRowsUpdated = 0; ... /* * Sets the updated value and updates the selected words. */ mUpdateValues.putNull(UserDictionary.Words.LOCALE); mRowsUpdated = getContentResolver().update( UserDictionary.Words.CONTENT_URI, // the user dictionary content URI mUpdateValues // the columns to update mSelectionClause // the column to select on mSelectionArgs // the value to compare to );
You should also sanitize user input when you call {@link android.content.ContentResolver#update ContentResolver.update()}. To learn more about this, read the section Protecting against malicious input.
Deleting rows is similar to retrieving row data: you specify selection criteria for the rows you want to delete and the client method returns the number of deleted rows. The following snippet deletes rows whose appid matches "user". The method returns the number of deleted rows.
// Defines selection criteria for the rows you want to delete String mSelectionClause = UserDictionary.Words.APP_ID + " LIKE ?"; String[] mSelectionArgs = {"user"}; // Defines a variable to contain the number of rows deleted int mRowsDeleted = 0; ... // Deletes the words that match the selection criteria mRowsDeleted = getContentResolver().delete( UserDictionary.Words.CONTENT_URI, // the user dictionary content URI mSelectionClause // the column to select on mSelectionArgs // the value to compare to );
You should also sanitize user input when you call {@link android.content.ContentResolver#delete ContentResolver.delete()}. To learn more about this, read the section Protecting against malicious input.
Content providers can offer many different data types. The User Dictionary Provider offers only text, but providers can also offer the following formats:
Another data type that providers often use is Binary Large OBject (BLOB) implemented as a 64KB byte array. You can see the available data types by looking at the {@link android.database.Cursor} class "get" methods.
The data type for each column in a provider is usually listed in its documentation. The data types for the User Dictionary Provider are listed in the reference documentation for its contract class {@link android.provider.UserDictionary.Words} (contract classes are described in the section Contract Classes). You can also determine the data type by calling {@link android.database.Cursor#getType Cursor.getType()}.
Providers also maintain MIME data type information for each content URI they define. You can use the MIME type information to find out if your application can handle data that the provider offers, or to choose a type of handling based on the MIME type. You usually need the MIME type when you are working with a provider that contains complex data structures or files. For example, the {@link android.provider.ContactsContract.Data} table in the Contacts Provider uses MIME types to label the type of contact data stored in each row. To get the MIME type corresponding to a content URI, call {@link android.content.ContentResolver#getType ContentResolver.getType()}.
The section MIME Type Reference describes the syntax of both standard and custom MIME types.
Three alternative forms of provider access are important in application development:
Batch access and modification via intents are described in the following sections.
Batch access to a provider is useful for inserting a large number of rows, or for inserting rows in multiple tables in the same method call, or in general for performing a set of operations across process boundaries as a transaction (an atomic operation).
To access a provider in "batch mode", you create an array of {@link android.content.ContentProviderOperation} objects and then dispatch them to a content provider with {@link android.content.ContentResolver#applyBatch ContentResolver.applyBatch()}. You pass the content provider's authority to this method, rather than a particular content URI. This allows each {@link android.content.ContentProviderOperation} object in the array to work against a different table. A call to {@link android.content.ContentResolver#applyBatch ContentResolver.applyBatch()} returns an array of results.
The description of the {@link android.provider.ContactsContract.RawContacts} contract class
includes a code snippet that demonstrates batch insertion. The
Contact Manager
sample application contains an example of batch access in its ContactAdder.java
source file.
If your application does have access permissions, you still may want to use an intent to display data in another application. For example, the Calendar application accepts an {@link android.content.Intent#ACTION_VIEW} intent, which displays a particular date or event. This allows you to display calendar information without having to create your own UI. To learn more about this feature, see the Calendar Provider guide.
The application to which you send the intent doesn't have to be the application associated with the provider. For example, you can retrieve a contact from the Contact Provider, then send an {@link android.content.Intent#ACTION_VIEW} intent containing the content URI for the contact's image to an image viewer.
Intents can provide indirect access to a content provider. You allow the user to access data in a provider even if your application doesn't have access permissions, either by getting a result intent back from an application that has permissions, or by activating an application that has permissions and letting the user do work in it.
You can access data in a content provider, even if you don't have the proper access permissions, by sending an intent to an application that does have the permissions and receiving back a result intent containing "URI" permissions. These are permissions for a specific content URI that last until the activity that receives them is finished. The application that has permanent permissions grants temporary permissions by setting a flag in the result intent:
Note: These flags don't give general read or write access to the provider whose authority is contained in the content URI. The access is only for the URI itself.
A provider defines URI permissions for content URIs in its manifest, using the
android:grantUriPermission
attribute of the
<provider>
element, as well as the
<grant-uri-permission>
child element of the
<provider>
element. The URI permissions mechanism is explained in more detail in the
Security and Permissions guide,
in the section "URI Permissions".
For example, you can retrieve data for a contact in the Contacts Provider, even if you don't have the {@link android.Manifest.permission#READ_CONTACTS} permission. You might want to do this in an application that sends e-greetings to a contact on his or her birthday. Instead of requesting {@link android.Manifest.permission#READ_CONTACTS}, which gives you access to all of the user's contacts and all of their information, you prefer to let the user control which contacts are used by your application. To do this, you use the following process:
A simple way to allow the user to modify data to which you don't have access permissions is to activate an application that has permissions and let the user do the work there.
For example, the Calendar application accepts an {@link android.content.Intent#ACTION_INSERT} intent, which allows you to activate the application's insert UI. You can pass "extras" data in this intent, which the application uses to pre-populate the UI. Because recurring events have a complex syntax, the preferred way of inserting events into the Calendar Provider is to activate the Calendar app with an {@link android.content.Intent#ACTION_INSERT} and then let the user insert the event there.
A contract class defines constants that help applications work with the content URIs, column names, intent actions, and other features of a content provider. Contract classes are not included automatically with a provider; the provider's developer has to define them and then make them available to other developers. Many of the providers included with the Android platform have corresponding contract classes in the package {@link android.provider}.
For example, the User Dictionary Provider has a contract class {@link android.provider.UserDictionary} containing content URI and column name constants. The content URI for the "words" table is defined in the constant {@link android.provider.UserDictionary.Words#CONTENT_URI UserDictionary.Words.CONTENT_URI}. The {@link android.provider.UserDictionary.Words} class also contains column name constants, which are used in the example snippets in this guide. For example, a query projection can be defined as:
String[] mProjection = { UserDictionary.Words._ID, UserDictionary.Words.WORD, UserDictionary.Words.LOCALE };
Another contract class is {@link android.provider.ContactsContract} for the Contacts Provider. The reference documentation for this class includes example code snippets. One of its subclasses, {@link android.provider.ContactsContract.Intents.Insert}, is a contract class that contains constants for intents and intent data.
Content providers can return standard MIME media types, or custom MIME type strings, or both.
MIME types have the format
type/subtype
For example, the well-known MIME type text/html
has the text
type and
the html
subtype. If the provider returns this type for a URI, it means that a
query using that URI will return text containing HTML tags.
Custom MIME type strings, also called "vendor-specific" MIME types, have more complex type and subtype values. The type value is always
vnd.android.cursor.dir
for multiple rows, or
vnd.android.cursor.item
for a single row.
The subtype is provider-specific. The Android built-in providers usually have a simple subtype. For example, the when the Contacts application creates a row for a telephone number, it sets the following MIME type in the row:
vnd.android.cursor.item/phone_v2
Notice that the subtype value is simply phone_v2
.
Other provider developers may create their own pattern of subtypes based on the provider's
authority and table names. For example, consider a provider that contains train timetables.
The provider's authority is com.example.trains
, and it contains the tables
Line1, Line2, and Line3. In response to the content URI
content://com.example.trains/Line1
for table Line1, the provider returns the MIME type
vnd.android.cursor.dir/vnd.example.line1
In response to the content URI
content://com.example.trains/Line2/5
for row 5 in table Line2, the provider returns the MIME type
vnd.android.cursor.item/vnd.example.line2
Most content providers define contract class constants for the MIME types they use. The Contacts Provider contract class {@link android.provider.ContactsContract.RawContacts}, for example, defines the constant {@link android.provider.ContactsContract.RawContacts#CONTENT_ITEM_TYPE} for the MIME type of a single raw contact row.
Content URIs for single rows are described in the section Content URIs.