MediaSetColumns
class MediaSetColumns
kotlin.Any | |
↳ | android.provider.CloudMediaProviderContract.MediaSetColumns |
MediaSet represents a cohesive collection of related unique media items, sharing a common meaningful context or theme. This is the basic and fundamental unit for organizing related media items. MediaSet in this context is represented by a set of columns present in MediaSetColumns
Examples of media sets include:
- Faces of the same person
- Photos of a specific location
- All media as a search result to mountains
AlbumColumns
which denotes an album can also be represented using MediaSetColumns
. But, it is recommended to keep using AlbumColumns
for existing user albums and use MediaSet only for supported MediaCategories . The currently supported MediaCategory in photo picker are MEDIA_CATEGORY_TYPE_PEOPLE_AND_PETS
. These are the fields of a MediaSet.
Summary
Constants | |
---|---|
static String |
Display name of the media set. |
static String |
Unique ID of the media set. |
static String |
Total count of all media within the media set, including photos and videos. |
static String |
Media ID to use as the media set cover photo. |
Constants
DISPLAY_NAME
static val DISPLAY_NAME: String
Display name of the media set. This display name provided should match the current devices locale settings. If there is no display name, pass null
in this column. Type: STRING
Value: "display_name"
ID
static val ID: String
Unique ID of the media set. This ID is both provided by and interpreted by the CloudMediaProvider
. Each media set must have a unique ID. A provider should return IDs which are stable, meaning it remains the same if nothing inside it changes, since they will be used to cache media set information in the OS. Type: STRING
Value: "id"
MEDIA_COUNT
static val MEDIA_COUNT: String
Total count of all media within the media set, including photos and videos. If this field is not provided, media sets will be shown without a count in the Photo Picker. Type: LONG
Value: "media_count"
MEDIA_COVER_ID
static val MEDIA_COVER_ID: String
Media ID to use as the media set cover photo. If this field is not provided, media sets will be shown in the Photo Picker with a default icon. Type: STRING
Value: "media_cover_id"