ContentResolver.CursorItemBaseType Field

Definition

This is the Android platform's base MIME type for a content: URI containing a Cursor of a single item.

[Android.Runtime.Register("CURSOR_ITEM_BASE_TYPE")]
public const string CursorItemBaseType;
[<Android.Runtime.Register("CURSOR_ITEM_BASE_TYPE")>]
val mutable CursorItemBaseType : string

Field Value

Attributes

Remarks

This is the Android platform's base MIME type for a content: URI containing a Cursor of a single item. Applications should use this as the base type along with their own sub-type of their content: URIs that represent a particular item. For example, hypothetical IMAP email client may have a URI content://com.company.provider.imap/inbox/1 for a particular message in the inbox, whose MIME type would be reported as CURSOR_ITEM_BASE_TYPE + "/vnd.company.imap-msg"

Compare with #CURSOR_DIR_BASE_TYPE.

Java documentation for android.content.ContentResolver.CURSOR_ITEM_BASE_TYPE.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to