Google is committed to advancing racial equity for Black communities. See how.

MediaStore.Audio.PlaylistsColumns

public static interface MediaStore.Audio.PlaylistsColumns
implements MediaStore.MediaColumns

android.provider.MediaStore.Audio.PlaylistsColumns


Audio playlist metadata columns.

Summary

Constants

String DATA

This constant was deprecated in API level 29. Apps may not have filesystem permissions to directly access this path. Instead of trying to open this path directly, apps should use ContentResolver#openFileDescriptor(Uri, String) to gain access.

String DATE_ADDED

The time the media item was first added.

String DATE_MODIFIED

The time the media item was last modified.

String NAME

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

Inherited constants

Constants

DATA

Added in API level 1
Deprecated in API level 29
public static final String DATA

This constant was deprecated in API level 29.
Apps may not have filesystem permissions to directly access this path. Instead of trying to open this path directly, apps should use ContentResolver#openFileDescriptor(Uri, String) to gain access.

Path to the playlist file on disk.

Note that apps may not have filesystem permissions to directly access this path. Instead of trying to open this path directly, apps should use ContentResolver#openFileDescriptor(Uri, String) to gain access.
This constant represents a column name that can be used with a ContentProvider through a ContentValues or Cursor object. The values stored in this column are Cursor#FIELD_TYPE_STRING .

Constant Value: "_data"

DATE_ADDED

Added in API level 1
public static final String DATE_ADDED

The time the media item was first added.
This constant represents a column name that can be used with a ContentProvider through a ContentValues or Cursor object. The values stored in this column are Cursor#FIELD_TYPE_INTEGER , and are read-only and cannot be mutated.

Constant Value: "date_added"

DATE_MODIFIED

Added in API level 1
public static final String DATE_MODIFIED

The time the media item was last modified.
This constant represents a column name that can be used with a ContentProvider through a ContentValues or Cursor object. The values stored in this column are Cursor#FIELD_TYPE_INTEGER , and are read-only and cannot be mutated.

Constant Value: "date_modified"

NAME

Added in API level 1
public static final String NAME

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

Constant Value: "name"