Package com.my.target.nativeads
Interface INativeBannerAd
-
- All Implemented Interfaces:
-
com.my.target.nativeads.IAd
public interface INativeBannerAd implements IAd
-
-
Method Summary
Modifier and Type Method Description abstract voidregisterView(@NonNull() NativeBannerAdViewBinder nativeBannerAdViewBinder)Registration of the Advertising view. abstract voidregisterView(@NonNull() NativeBannerAdViewBinder nativeBannerAdViewBinder, @Nullable() List<View> clickableViews)Registration of the Advertising view. abstract voidregisterView(@NonNull() NativeBannerAdView nativeBannerAdView)Registration of the Advertising view. abstract voidregisterView(@NonNull() NativeBannerAdView nativeBannerAdView, @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() NativeBannerAdViewBinder nativeBannerAdViewBinder)
Registration of the Advertising view. Must be called before showing the ad
- Parameters:
nativeBannerAdViewBinder- Advertising view binder
-
registerView
abstract void registerView(@NonNull() NativeBannerAdViewBinder nativeBannerAdViewBinder, @Nullable() List<View> clickableViews)
Registration of the Advertising view. Must be called before showing the ad
- Parameters:
nativeBannerAdViewBinder- Advertising view binderclickableViews- specific clickable views inside Advertising view.
-
registerView
abstract void registerView(@NonNull() NativeBannerAdView nativeBannerAdView)
Registration of the Advertising view. Must be called before showing the ad
- Parameters:
nativeBannerAdView- Default advertising view for native banner ad
-
registerView
abstract void registerView(@NonNull() NativeBannerAdView nativeBannerAdView, @Nullable() List<View> clickableViews)
Registration of the Advertising view. Must be called before showing the ad
- Parameters:
nativeBannerAdView- Default advertising view for native banner adclickableViews- specific clickable views inside Advertising view.
-
-
-
-