public abstract class AdColonyAdViewListener
extends java.lang.Object
| Constructor and Description |
|---|
AdColonyAdViewListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
onClicked(AdColonyAdView ad)
Called when the user has interacted with the ad in a meaningful way, for example a click that led
to some underlying tracking or responsive interaction.
|
void |
onClosed(AdColonyAdView ad)
Called when an expanded ad view closes.
|
void |
onLeftApplication(AdColonyAdView ad)
Called when some action during the ad causes the user to leave the application.
|
void |
onOpened(AdColonyAdView ad)
Called when the ad view is clicked on and expanded.
|
abstract void |
onRequestFilled(AdColonyAdView ad)
Called in response to an ad request when the request has been successfully filled.
|
void |
onRequestNotFilled(AdColonyZone zone)
Called when the ad request is not successfully filled.
|
public abstract void onRequestFilled(AdColonyAdView ad)
ad - the ad that is returned in response to the successful ad request.public void onOpened(AdColonyAdView ad)
ad - the ad that was clicked on and expanded.public void onClosed(AdColonyAdView ad)
ad - the ad that was closed.public void onLeftApplication(AdColonyAdView ad)
ad - the ad that caused the user to leave the applicationpublic void onClicked(AdColonyAdView ad)
ad - the ad that has been clicked.public void onRequestNotFilled(AdColonyZone zone)
zone - the zone that the failed ad request was made from.