CustomEvent

public interface CustomEvent

Known direct subclasses
CustomEventBanner

This interface is deprecated.

Use Adapter instead.

CustomEventInterstitial

This interface is deprecated.

Use Adapter instead.

CustomEventNative

This interface is deprecated.

Use Adapter instead.


A CustomEvent is similar to a except that it is a completely self-service mechanism for publishers to create their own adapter.

The most common use case for a CustomEvent is to add support for an ad network that doesn't already provide its own com.google.android.gms.ads.mediation.MediationAdapter.

There is no reason to implement this interface directly. Instead, custom events should implement CustomEventBanner and CustomEventInterstitial.

Summary

Public methods

abstract void

Tears down the adapter control.

abstract void

Called when the application calls pause.

abstract void

Called when the application calls resume.

Public methods

onDestroy

abstract void onDestroy()

Tears down the adapter control.

This is called at the end of the custom event's life cycle. The adapter is expected to release any resources and shut down. After this method is called, any subsequent calls to any other method on this adapter may throw an IllegalStateException.

This method is not guaranteed to be called. There are a number of reasons that this method can be skipped, such as a force close of the application.

onPause

abstract void onPause()

Called when the application calls pause. The custom event is expected to pause any processing associated with the ad being shown.

onResume

abstract void onResume()

Called when the application calls resume. The adapter is expected to resume any processing associated with the ad being shown.