Interface AdDisplayListener
public interface AdDisplayListener
Callback to be invoked when an ad events occurred.
-
Method Summary
Modifier and TypeMethodDescriptionvoidadClicked(com.startapp.sdk.adsbase.Ad ad) Called when a click is recorded for an ad.voidadDisplayed(com.startapp.sdk.adsbase.Ad ad) Called when the ad showed the full screen content.voidadHidden(com.startapp.sdk.adsbase.Ad ad) Called when the ad hid full screen content.voidadNotDisplayed(com.startapp.sdk.adsbase.Ad ad) Called when the ad failed to show full screen content.
-
Method Details
-
adHidden
void adHidden(com.startapp.sdk.adsbase.Ad ad) Called when the ad hid full screen content. -
adDisplayed
void adDisplayed(com.startapp.sdk.adsbase.Ad ad) Called when the ad showed the full screen content. -
adClicked
void adClicked(com.startapp.sdk.adsbase.Ad ad) Called when a click is recorded for an ad. -
adNotDisplayed
void adNotDisplayed(com.startapp.sdk.adsbase.Ad ad) Called when the ad failed to show full screen content.
-