Package com.google.android.exoplayer2.ui
Interface AdViewProvider
-
- All Known Implementing Classes:
PlayerView
,StyledPlayerView
@Deprecated public interface AdViewProvider
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Provides information about views for the ad playback UI.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default List<AdOverlayInfo>
getAdOverlayInfos()
Deprecated.Returns a list ofAdOverlayInfo
instances describing views that are on top of the ad view group, but that are essential for controlling playback and should be excluded from ad viewability measurements.ViewGroup
getAdViewGroup()
Deprecated.Returns theViewGroup
on top of the player that will show any ad UI, ornull
if playing audio-only ads.
-
-
-
Method Detail
-
getAdViewGroup
@Nullable ViewGroup getAdViewGroup()
Deprecated.Returns theViewGroup
on top of the player that will show any ad UI, ornull
if playing audio-only ads. Any views on top of the returned view group must be described byAdOverlayInfos
returned bygetAdOverlayInfos()
, for accurate viewability measurement.
-
getAdOverlayInfos
default List<AdOverlayInfo> getAdOverlayInfos()
Deprecated.Returns a list ofAdOverlayInfo
instances describing views that are on top of the ad view group, but that are essential for controlling playback and should be excluded from ad viewability measurements.Each view must be either a fully transparent overlay (for capturing touch events), or a small piece of transient UI that is essential to the user experience of playback (such as a button to pause/resume playback or a transient full-screen or cast button). For more information see the documentation for your ads loader.
-
-