-
public interface CloudXNativeAdViewTemplate
-
-
Method Summary
Modifier and Type Method Description abstract StringgetTitle()abstract UnitsetTitle(String title)abstract StringgetDescriptionText()abstract UnitsetDescriptionText(String descriptionText)abstract StringgetCallToActionText()abstract UnitsetCallToActionText(String callToActionText)abstract DrawablegetAppIcon()abstract UnitsetAppIcon(Drawable appIcon)abstract DrawablegetMainImage()abstract UnitsetMainImage(Drawable mainImage)abstract Function0<Unit>getOnClick()abstract UnitsetOnClick(Function0<Unit> onClick)abstract ViewGroupgetRootView()Root view -- reference to the template's container view, which contains all the views defined in this interface. abstract ViewgetCtaView()abstract ViewgetTitleView()abstract ViewgetDescriptionView()abstract ImageViewgetIconView()abstract ImageViewgetMainImageView()abstract ViewgetCustomMediaView()abstract UnitsetCustomMediaView(View customMediaView)-
-
Method Detail
-
getDescriptionText
abstract String getDescriptionText()
-
setDescriptionText
abstract Unit setDescriptionText(String descriptionText)
-
getCallToActionText
abstract String getCallToActionText()
-
setCallToActionText
abstract Unit setCallToActionText(String callToActionText)
-
getAppIcon
abstract Drawable getAppIcon()
-
setAppIcon
abstract Unit setAppIcon(Drawable appIcon)
-
getMainImage
abstract Drawable getMainImage()
-
setMainImage
abstract Unit setMainImage(Drawable mainImage)
-
getOnClick
abstract Function0<Unit> getOnClick()
-
setOnClick
abstract Unit setOnClick(Function0<Unit> onClick)
-
getRootView
abstract ViewGroup getRootView()
Root view -- reference to the template's container view, which contains all the views defined in this interface.
-
getCtaView
abstract View getCtaView()
-
getTitleView
abstract View getTitleView()
-
getDescriptionView
abstract View getDescriptionView()
-
getIconView
abstract ImageView getIconView()
-
getMainImageView
abstract ImageView getMainImageView()
-
getCustomMediaView
abstract View getCustomMediaView()
-
setCustomMediaView
abstract Unit setCustomMediaView(View customMediaView)
-
-
-
-