RTBSDK Android Integration
Release Notes
  • Start
    • Setup
      • Maven
      • Configure RTBSDK
    • Consent
  • Formats
    • Banner
    • Fullscreen (Interstitial)
    • Native Ads
    • Advanced
      • Separate Loading and Rendering of Banner Ads
  • Other
    • AppLovin Custom Adapter
    • AdMob Custom Events
    • Reference
      • Classes
        • RTBSDKManager
        • RTBBannerView
        • RTBBannerAdProvider
        • RTBBannerRequestConfiguration
        • RTBBannerSize
        • RTBFullscreenAd
        • RTBFullscreenRequestConfiguration
        • RTBBidInfo
        • RTBNativeAd
        • RTBNativeAdRequestConfiguration
        • RTBUserTargeting
        • RTBNativeAdLoader
      • Interfaces
        • RTBBannerViewDelegate
        • RTBBannerAdLoadDelegate
        • RTBBannerAdInteractionDelegate
        • RTBFullscreenDelegate
        • RTBNativeAdLoadDelegate
        • RTBNativeAdInteractionDelegate
      • Enumerations
        • RTBGender
  • Sample App
Powered by GitBook
On this page
  1. Other
  2. Reference
  3. Interfaces

RTBFullscreenDelegate

interface RTBFullscreenDelegate {
    /**
     * Called when the fullscreen ad has been loaded and ready to be shown.
     * @param bidInfo Information about the bid.
     */
    fun fullscreenAdDidReceiveAd(fullscreenAd: RTBFullscreenAd, bidInfo: RTBBidInfo, networkName: String)

    /**
     * Called when the ad loading is failed.
     */
    fun fullscreenAdDidFailToReceiveAd(fullscreenAd: RTBFullscreenAd, error: String, networkName: String)

    /**
     * Called when the use clicks on the fullscreen ad.
     */
    fun fullscreenAdDidRecordClick(fullscreenAd: RTBFullscreenAd, networkName: String)

    /**
     * Called when the fullscreen ad has been displayed.
     */
    fun fullscreenAdDidPauseForAd(fullscreenAd: RTBFullscreenAd, networkName: String)

    /**
     * Called when the fullscreen ad has been dismissed.
     */
    fun fullscreenAdDidResumeAfterAd(fullscreenAd: RTBFullscreenAd, networkName: String)
}
PreviousRTBBannerAdInteractionDelegateNextRTBNativeAdLoadDelegate

Last updated 10 months ago