-
- All Implemented Interfaces:
@MainThread() public interface NativeAdLoadListener
Interface that is implemented to determine when the loading of native advertising has completed or failed.
-
-
Method Summary
Modifier and Type Method Description abstract voidonAdLoaded(@NonNull() NativeAd nativeAd)Notifies when native ad is loaded. abstract voidonAdFailedToLoad(@NonNull() AdRequestError error)Called when a native ad request failed. -
-
Method Detail
-
onAdLoaded
abstract void onAdLoaded(@NonNull() NativeAd nativeAd)
Notifies when native ad is loaded.
- Parameters:
nativeAd- Native ad, which is ready to be bound to view.
-
onAdFailedToLoad
abstract void onAdFailedToLoad(@NonNull() AdRequestError error)
Called when a native ad request failed.
- Parameters:
error- see errors here AdRequestError
-
-
-
-