Package 

Interface CloudXFullscreenAdListener

  • All Implemented Interfaces:
    io.cloudx.sdk.CloudXAdListener

    
    public interface CloudXFullscreenAdListener
     implements CloudXAdListener
                        

    Listener for fullscreen ad types (interstitial and rewarded).

    Extends CloudXAdListener with display and hidden callbacks specific to fullscreen ads that take over the screen.

    • Method Summary

      Modifier and Type Method Description
      abstract Unit onAdDisplayed(CloudXAd cloudXAd) Ad was displayed to the user.
      abstract Unit onAdDisplayFailed(CloudXAd cloudXAd, CloudXError cloudXError) Ad failed to display.
      abstract Unit onAdHidden(CloudXAd cloudXAd) Ad was hidden/closed by the user.
      • Methods inherited from class io.cloudx.sdk.CloudXFullscreenAdListener

        onAdClicked, onAdLoadFailed, onAdLoaded
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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 display
        cloudXError - Details about the error
      • onAdHidden

         abstract Unit onAdHidden(CloudXAd cloudXAd)

        Ad was hidden/closed by the user.

        Parameters:
        cloudXAd - The ad that was hidden