public abstract class

AdListener

extends Object
java.lang.Object
   ↳ com.google.android.gms.ads.AdListener

Class Overview

An interface for receiving notifications during the lifecycle of an ad.

Summary

Public Constructors
AdListener()
Public Methods
void onAdClosed()
Called when the user is about to return to the application after clicking on an ad.
void onAdFailedToLoad(int errorCode)
Called when an ad request failed.
void onAdLeftApplication()
Called when an ad leaves the application (e.g., to go to the browser).
void onAdLoaded()
Called when an ad is received.
void onAdOpened()
Called when an ad opens an overlay that covers the screen.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public AdListener ()

Public Methods

public void onAdClosed ()

Called when the user is about to return to the application after clicking on an ad.

public void onAdFailedToLoad (int errorCode)

Called when an ad request failed. The error code is usually ERROR_CODE_INTERNAL_ERROR, ERROR_CODE_INVALID_REQUEST, ERROR_CODE_NETWORK_ERROR, or ERROR_CODE_NO_FILL.

public void onAdLeftApplication ()

Called when an ad leaves the application (e.g., to go to the browser).

public void onAdLoaded ()

Called when an ad is received.

public void onAdOpened ()

Called when an ad opens an overlay that covers the screen.