public static interface

MediaStore.MediaColumns

implements BaseColumns
android.provider.MediaStore.MediaColumns
Known Indirect Subclasses

Class Overview

Common fields for most MediaProvider tables

Summary

Constants
String DATA The data stream for the file

Type: DATA STREAM

String DATE_ADDED The time the file was added to the media provider Units are seconds since 1970.
String DATE_MODIFIED The time the file was last modified Units are seconds since 1970.
String DISPLAY_NAME The display name of the file

Type: TEXT

String MIME_TYPE The MIME type of the file

Type: TEXT

String SIZE The size of the file in bytes

Type: INTEGER (long)

String TITLE The title of the content

Type: TEXT

[Expand]
Inherited Constants
From interface android.provider.BaseColumns

Constants

public static final String DATA

The data stream for the file

Type: DATA STREAM

Constant Value: "_data"

public static final String DATE_ADDED

The time the file was added to the media provider Units are seconds since 1970.

Type: INTEGER (long)

Constant Value: "date_added"

public static final String DATE_MODIFIED

The time the file was last modified Units are seconds since 1970. NOTE: This is for internal use by the media scanner. Do not modify this field.

Type: INTEGER (long)

Constant Value: "date_modified"

public static final String DISPLAY_NAME

The display name of the file

Type: TEXT

Constant Value: "_display_name"

public static final String MIME_TYPE

The MIME type of the file

Type: TEXT

Constant Value: "mime_type"

public static final String SIZE

The size of the file in bytes

Type: INTEGER (long)

Constant Value: "_size"

public static final String TITLE

The title of the content

Type: TEXT

Constant Value: "title"