-
- All Implemented Interfaces:
-
io.cloudx.sdk.adapter.CloudXAdapterErrorListener
@RestrictTo(value = {RestrictTo.Scope.LIBRARY_GROUP}) public interface CloudXNativeAdAdapterListener implements CloudXAdapterErrorListener
-
-
Method Summary
Modifier and Type Method Description abstract UnitonNativeAdLoaded(CloudXNativeAd nativeAd, Bundle extraInfo)abstract UnitonAdImpression(Bundle extraInfo)abstract UnitonAdClicked(Bundle extraInfo)UnitonAdClosed(Bundle extraInfo)User hid or reported the ad via AdChoices. UnitonAdExpired(Bundle extraInfo)Ad creative has expired and should no longer be displayed. -
-
Method Detail
-
onNativeAdLoaded
abstract Unit onNativeAdLoaded(CloudXNativeAd nativeAd, Bundle extraInfo)
-
onAdImpression
abstract Unit onAdImpression(Bundle extraInfo)
-
onAdClicked
abstract Unit onAdClicked(Bundle extraInfo)
-
onAdClosed
Unit onAdClosed(Bundle extraInfo)
User hid or reported the ad via AdChoices. Adapters should call this when the underlying SDK fires its ad-closed / ad-hidden callback.
-
onAdExpired
Unit onAdExpired(Bundle extraInfo)
Ad creative has expired and should no longer be displayed.
-
-
-
-