Package com.google.android.exoplayer2
Class MediaItem.AdsConfiguration
- java.lang.Object
-
- com.google.android.exoplayer2.MediaItem.AdsConfiguration
-
- All Implemented Interfaces:
Bundleable
- Enclosing class:
- MediaItem
public static final class MediaItem.AdsConfiguration extends Object implements Bundleable
Configuration for playing back linear ads with a media item.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MediaItem.AdsConfiguration.Builder
Builder forMediaItem.AdsConfiguration
instances.-
Nested classes/interfaces inherited from interface com.google.android.exoplayer2.Bundleable
Bundleable.Creator<T extends Bundleable>
-
-
Field Summary
Fields Modifier and Type Field Description Object
adsId
An opaque identifier for ad playback state associated with this item, ornull
if the combination of themedia ID
andad tag URI
should be used as the ads identifier.Uri
adTagUri
The ad tag URI to load.static Bundleable.Creator<MediaItem.AdsConfiguration>
CREATOR
An object that can restoreMediaItem.AdsConfiguration
from aBundle
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MediaItem.AdsConfiguration.Builder
buildUpon()
Returns aMediaItem.AdsConfiguration.Builder
initialized with the values of this instance.boolean
equals(Object obj)
int
hashCode()
Bundle
toBundle()
Returns aBundle
representing the information stored in this object.
-
-
-
Field Detail
-
adTagUri
public final Uri adTagUri
The ad tag URI to load.
-
adsId
@Nullable public final Object adsId
An opaque identifier for ad playback state associated with this item, ornull
if the combination of themedia ID
andad tag URI
should be used as the ads identifier.Media items in the playlist that have the same ads identifier and ads loader share the same ad playback state. To resume ad playback when recreating the playlist on returning from the background, pass the same ads identifiers to the player.
-
CREATOR
public static final Bundleable.Creator<MediaItem.AdsConfiguration> CREATOR
An object that can restoreMediaItem.AdsConfiguration
from aBundle
.The
adsId
of a restored instance will always benull
.
-
-
Method Detail
-
buildUpon
public MediaItem.AdsConfiguration.Builder buildUpon()
Returns aMediaItem.AdsConfiguration.Builder
initialized with the values of this instance.
-
-