A listener for receiving notifications during the lifecycle of an ad.
Public Constructor Summary
Public Method Summary
void |
onAdClicked()
Called when a click is recorded for an ad.
|
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 |
onAdImpression()
Called when an impression is recorded for an ad.
|
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.
|
Inherited Method Summary
Public Constructors
public AdListener ()
Public Methods
public void onAdClicked ()
Called when a click is recorded for an ad. At the current time, this method is only used with native ads originating from Google in one of the system-defined formats (App Install or Content).
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 onAdImpression ()
Called when an impression is recorded for an ad. At the current time, this method is only used with native ads originating from Google in one of the system-defined formats (App Install or Content).
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.