Interface POBNativeRendererListener
-
- All Implemented Interfaces:
@MainThread() public interface POBNativeRendererListener
Native rendering listener to provide callback about rendering events
-
-
Method Summary
Modifier and Type Method Description abstract voidonAdRendered(@NonNull() View adview)Notify about the Native Ad rendering completion abstract voidonAdRenderingFailed(@NonNull() POBError error)Notify about the Native Ad rendering failure abstract voidonAdImpression()Notify about the Native Ad recorded impression abstract voidonAdClicked()Notify about the Native Ad recorded click abstract voidonAdClicked(int assetId)Notify about the Native Ad recorded click for specific asset abstract voidonAdLeavingApplication()Notify about the Native Ad leaving application abstract voidonAdOpened()Notify about the Native Ad opened abstract voidonAdClosed()Notify about the Native Ad closed abstract voidonDsaInfoIconClicked()Notifies to show the DSA info detail screen -
-
Method Detail
-
onAdRendered
abstract void onAdRendered(@NonNull() View adview)
Notify about the Native Ad rendering completion
- Parameters:
adview- Native Ad view instance
-
onAdRenderingFailed
abstract void onAdRenderingFailed(@NonNull() POBError error)
Notify about the Native Ad rendering failure
- Parameters:
error- POBError for show failures
-
onAdImpression
abstract void onAdImpression()
Notify about the Native Ad recorded impression
-
onAdClicked
abstract void onAdClicked()
Notify about the Native Ad recorded click
-
onAdClicked
abstract void onAdClicked(int assetId)
Notify about the Native Ad recorded click for specific asset
-
onAdLeavingApplication
abstract void onAdLeavingApplication()
Notify about the Native Ad leaving application
-
onAdOpened
abstract void onAdOpened()
Notify about the Native Ad opened
-
onAdClosed
abstract void onAdClosed()
Notify about the Native Ad closed
-
onDsaInfoIconClicked
abstract void onDsaInfoIconClicked()
Notifies to show the DSA info detail screen
-
-
-
-