Package com.google.android.exoplayer2.ui
Class AdOverlayInfo
- java.lang.Object
-
- com.google.android.exoplayer2.ui.AdOverlayInfo
-
@Deprecated public final class AdOverlayInfo extends Object
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 an overlay view shown on top of an ad view group.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AdOverlayInfo.Builder
Deprecated.A builder forAdOverlayInfo
instances.static interface
AdOverlayInfo.Purpose
Deprecated.The purpose of the overlay.
-
Field Summary
Fields Modifier and Type Field Description @com.google.android.exoplayer2.ui.AdOverlayInfo.Purpose int
purpose
Deprecated.The purpose of the overlay view.static int
PURPOSE_CLOSE_AD
Deprecated.Purpose for ad close buttons overlaying the player.static int
PURPOSE_CONTROLS
Deprecated.Purpose for playback controls overlaying the player.static int
PURPOSE_NOT_VISIBLE
Deprecated.Purpose for overlays that are not visible.static int
PURPOSE_OTHER
Deprecated.Purpose for other overlays.String
reasonDetail
Deprecated.An optional, detailed reason that the overlay view is needed.View
view
Deprecated.The overlay view.
-
Constructor Summary
Constructors Constructor Description AdOverlayInfo(View view, @com.google.android.exoplayer2.ui.AdOverlayInfo.Purpose int purpose)
Deprecated.UseAdOverlayInfo.Builder
instead.AdOverlayInfo(View view, @com.google.android.exoplayer2.ui.AdOverlayInfo.Purpose int purpose, String detailedReason)
Deprecated.UseAdOverlayInfo.Builder
instead.
-
-
-
Field Detail
-
PURPOSE_CONTROLS
public static final int PURPOSE_CONTROLS
Deprecated.Purpose for playback controls overlaying the player.- See Also:
- Constant Field Values
-
PURPOSE_CLOSE_AD
public static final int PURPOSE_CLOSE_AD
Deprecated.Purpose for ad close buttons overlaying the player.- See Also:
- Constant Field Values
-
PURPOSE_OTHER
public static final int PURPOSE_OTHER
Deprecated.Purpose for other overlays.- See Also:
- Constant Field Values
-
PURPOSE_NOT_VISIBLE
public static final int PURPOSE_NOT_VISIBLE
Deprecated.Purpose for overlays that are not visible.- See Also:
- Constant Field Values
-
view
public final View view
Deprecated.The overlay view.
-
purpose
@Purpose public final @com.google.android.exoplayer2.ui.AdOverlayInfo.Purpose int purpose
Deprecated.The purpose of the overlay view.
-
reasonDetail
@Nullable public final String reasonDetail
Deprecated.An optional, detailed reason that the overlay view is needed.
-
-
Constructor Detail
-
AdOverlayInfo
@Deprecated public AdOverlayInfo(View view, @Purpose @com.google.android.exoplayer2.ui.AdOverlayInfo.Purpose int purpose)
Deprecated.UseAdOverlayInfo.Builder
instead.
-
AdOverlayInfo
@Deprecated public AdOverlayInfo(View view, @Purpose @com.google.android.exoplayer2.ui.AdOverlayInfo.Purpose int purpose, @Nullable String detailedReason)
Deprecated.UseAdOverlayInfo.Builder
instead.
-
-