# Print output for @column tags ?> MediaStore.Audio.PlaylistsColumns - Android SDK | Android Developers

Most visited

Recently visited

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 is deprecated. 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

public static final String DATA

This constant is deprecated.
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

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

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

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"