-
- All Implemented Interfaces:
-
io.cloudx.sdk.CloudXAdListener
public interface CloudXFullscreenAdListener implements CloudXAdListener
Listener for fullscreen ad types (interstitial, rewarded, and app open).
Extends CloudXAdListener with display and hidden callbacks specific to fullscreen ads that take over the screen.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonAdDisplayed(CloudXAd cloudXAd)Ad was displayed to the user. abstract UnitonAdDisplayFailed(CloudXAd cloudXAd, CloudXError cloudXError)Ad failed to display. abstract UnitonAdHidden(CloudXAd cloudXAd)Ad was hidden/closed by the user. -
-
Method Detail
-
onAdDisplayed
abstract Unit onAdDisplayed(CloudXAd cloudXAd)
Ad was displayed to the user.
- Parameters:
cloudXAd- The ad that was displayed
-
onAdDisplayFailed
abstract Unit onAdDisplayFailed(CloudXAd cloudXAd, CloudXError cloudXError)
Ad failed to display.
- Parameters:
cloudXAd- The ad that failed to displaycloudXError- Details about the error
-
onAdHidden
abstract Unit onAdHidden(CloudXAd cloudXAd)
Ad was hidden/closed by the user.
- Parameters:
cloudXAd- The ad that was hidden
-
-
-
-