CustomEventBannerListener

interface CustomEventBannerListener : CustomEventListener


Custom events that implement CustomEventBanner should use this listener to send callbacks to the mediation library to properly manage ad flow.

Summary

Public functions

Unit
onAdLoaded(view: View!)

Indicates that a view has been requested and successfully received.

Inherited functions

From com.google.android.gms.ads.mediation.customevent.CustomEventListener
Unit

Indicates that the user has clicked on this custom event.

Unit

Indicates that the custom event rendered something in full screen and is now transferring control back to the application.

Unit

Indicates that a custom event request has failed along with the underlying cause.

Unit
onAdFailedToLoad(errorCode: Int)

This function is deprecated.

Use onAdFailedToLoad instead.

Unit

Indicates that user interaction with the custom event is causing the device to switch to a different application (such as a web browser).

Unit

Indicates that the custom event is rendering something that is full screen.

Public functions

onAdLoaded

fun onAdLoaded(view: View!): Unit

Indicates that a view has been requested and successfully received. This view may be displayed after this method has been called.

Once an ad view is requested, the custom event must report either onAdLoaded or onAdFailedToLoad. If no response is received within a time limit, the mediation library may move on to another adapter, resulting in the custom event's view not being shown.

Parameters
view: View!

The view to be displayed.