Added in API level 1
Deprecated in API level 31

PlaylistsColumns

interface PlaylistsColumns : MediaStore.MediaColumns
android.provider.MediaStore.Audio.PlaylistsColumns

Audio playlist metadata columns.

Summary

Constants
static String

Path to the playlist file on disk.

static String

The time the media item was first added.

static String

The time the media item was last modified.

static String

The name of the playlist
This constant represents a column name that can be used with a android.content.ContentProvider through a android.content.ContentValues or android.database.Cursor object.

Inherited constants

Constants

DATA

Added in API level 1
Deprecated in API level 29
static val DATA: String

Deprecated: Deprecated in Java.

Path to the playlist file on disk.
This constant represents a column name that can be used with a android.content.ContentProvider through a android.content.ContentValues or android.database.Cursor object. The values stored in this column are Cursor#FIELD_TYPE_STRING .

Value: "_data"

DATE_ADDED

Added in API level 1
static val DATE_ADDED: String

Deprecated: Deprecated in Java.

The time the media item was first added.
Value is a non-negative timestamp measured as the number of seconds since 1970-01-01T00:00:00Z.
This constant represents a column name that can be used with a android.content.ContentProvider through a android.content.ContentValues or android.database.Cursor object. The values stored in this column are Cursor#FIELD_TYPE_INTEGER , and are read-only and cannot be mutated.

Value: "date_added"

DATE_MODIFIED

Added in API level 1
static val DATE_MODIFIED: String

Deprecated: Deprecated in Java.

The time the media item was last modified.
Value is a non-negative timestamp measured as the number of seconds since 1970-01-01T00:00:00Z.
This constant represents a column name that can be used with a android.content.ContentProvider through a android.content.ContentValues or android.database.Cursor object. The values stored in this column are Cursor#FIELD_TYPE_INTEGER , and are read-only and cannot be mutated.

Value: "date_modified"

NAME

Added in API level 1
static val NAME: String

Deprecated: Deprecated in Java.

The name of the playlist
This constant represents a column name that can be used with a android.content.ContentProvider through a android.content.ContentValues or android.database.Cursor object. The values stored in this column are Cursor#FIELD_TYPE_STRING .

Value: "name"