Package com.my.target.nativeads
Interface INativeAd
-
-
Method Summary
Modifier and Type Method Description abstract voidregisterView(@NonNull() NativeAdViewBinder nativeAdViewBinder)Registration of the Advertising view. abstract voidregisterView(@NonNull() NativeAdViewBinder nativeAdViewBinder, @Nullable() List<View> clickableViews)Registration of the Advertising view. abstract voidregisterView(@NonNull() NativeAdView nativeAdView)Registration of the Advertising view. abstract voidregisterView(@NonNull() NativeAdView nativeAdView, @Nullable() List<View> clickableViews)Registration of the Advertising view. -
Methods inherited from class com.my.target.nativeads.IAd
getAdChoicesPlacement, getCachePolicy, handleData, load, loadFromBid, registerView, registerView, setAdChoicesPlacement, setCachePolicy, unregisterView -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
registerView
abstract void registerView(@NonNull() NativeAdViewBinder nativeAdViewBinder)
Registration of the Advertising view. Must be called before showing the ad
- Parameters:
nativeAdViewBinder- Advertising view binder
-
registerView
abstract void registerView(@NonNull() NativeAdViewBinder nativeAdViewBinder, @Nullable() List<View> clickableViews)
Registration of the Advertising view. Must be called before showing the ad
- Parameters:
nativeAdViewBinder- Advertising view binderclickableViews- specific clickable views inside Advertising view.
-
registerView
abstract void registerView(@NonNull() NativeAdView nativeAdView)
Registration of the Advertising view. Must be called before showing the ad
- Parameters:
nativeAdView- Default advertising view for native ad
-
registerView
abstract void registerView(@NonNull() NativeAdView nativeAdView, @Nullable() List<View> clickableViews)
Registration of the Advertising view. Must be called before showing the ad
- Parameters:
nativeAdView- Default advertising view for nativeAdclickableViews- specific clickable views inside Advertising view.
-
-
-
-