Most visited

Recently visited

Added in API level 1

MediaStore.Audio.PlaylistsColumns

public static interface MediaStore.Audio.PlaylistsColumns

android.provider.MediaStore.Audio.PlaylistsColumns
Known Indirect Subclasses


Columns representing a playlist

Summary

Constants

String DATA

Path to the playlist file on disk.

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 NAME

The name of the playlist

Type: TEXT

Constants

DATA

Added in API level 1
String DATA

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 openFileDescriptor(Uri, String) to gain access.

Type: TEXT

Constant Value: "_data"

DATE_ADDED

Added in API level 1
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"

DATE_MODIFIED

Added in API level 1
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"

NAME

Added in API level 1
String NAME

The name of the playlist

Type: TEXT

Constant Value: "name"

Hooray!