Package com.adcolony.sdk
Class AdColonyAdViewListener
- java.lang.Object
-
- com.adcolony.sdk.AdColonyAdViewListener
-
public abstract class AdColonyAdViewListener extends java.lang.ObjectListener used to notify developer of ad specific events.
-
-
Constructor Summary
Constructors Constructor Description AdColonyAdViewListener()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidonClicked(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.voidonClosed(AdColonyAdView ad)Called when an expanded ad view closes.voidonLeftApplication(AdColonyAdView ad)Called when some action during the ad causes the user to leave the application.voidonOpened(AdColonyAdView ad)Called when the ad view is clicked on and expanded.abstract voidonRequestFilled(AdColonyAdView ad)Called in response to an ad request when the request has been successfully filled.voidonRequestNotFilled(AdColonyZone zone)Called when the ad request is not successfully filled.
-
-
-
Method Detail
-
onRequestFilled
public abstract void onRequestFilled(AdColonyAdView ad)
Called in response to an ad request when the request has been successfully filled.- Parameters:
ad- the ad that is returned in response to the successful ad request.
-
onOpened
public void onOpened(AdColonyAdView ad)
Called when the ad view is clicked on and expanded.- Parameters:
ad- the ad that was clicked on and expanded.
-
onClosed
public void onClosed(AdColonyAdView ad)
Called when an expanded ad view closes.- Parameters:
ad- the ad that was closed.
-
onLeftApplication
public void onLeftApplication(AdColonyAdView ad)
Called when some action during the ad causes the user to leave the application.- Parameters:
ad- the ad that caused the user to leave the application
-
onClicked
public 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.- Parameters:
ad- the ad that has been clicked.
-
onRequestNotFilled
public void onRequestNotFilled(AdColonyZone zone)
Called when the ad request is not successfully filled.- Parameters:
zone- the zone that the failed ad request was made from.
-
-