Commit beb13f62 by gyumin Committed by Oliver Woodman

Add FOLDER_TYPE_NONE to MediaMetadata

PiperOrigin-RevId: 375883879
parent 2e5c95e8
......@@ -245,6 +245,7 @@ public final class MediaMetadata implements Bundleable {
@Documented
@Retention(RetentionPolicy.SOURCE)
@IntDef({
FOLDER_TYPE_NONE,
FOLDER_TYPE_MIXED,
FOLDER_TYPE_TITLES,
FOLDER_TYPE_ALBUMS,
......@@ -255,6 +256,8 @@ public final class MediaMetadata implements Bundleable {
})
public @interface FolderType {}
/** Type for an item that is not a folder. */
public static final int FOLDER_TYPE_NONE = -1;
/** Type for a folder containing media of mixed types. */
public static final int FOLDER_TYPE_MIXED = 0;
/** Type for a folder containing only playable media. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment