Package com.naver.ads.webview
Interface AdWebViewControllerListener
-
- All Implemented Interfaces:
public interface AdWebViewControllerListenerImplement this interface and pass it to your AdWebViewController object to receive events on the status.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonAdLoaded()Called when an ad has successfully been loaded. abstract UnitonAdClicked()Called when an ad is clicked. abstract UnitonAdError(AdWebViewErrorCode errorCode)Called when an error happened while an ad is attempting to load or rendering an ad. UnitonAdResize()Called when an ad is resized. UnitonAdUnloaded()Called when a request comes in to unload an ad. UnitonAdMuted()Called when an ad is muted by ad choices. UnitonAdMetaChanged(Map<String, String> params)Called when the meta data of an ad changes. -
-
Method Detail
-
onAdLoaded
abstract Unit onAdLoaded()
Called when an ad has successfully been loaded.
-
onAdClicked
abstract Unit onAdClicked()
Called when an ad is clicked.
-
onAdError
abstract Unit onAdError(AdWebViewErrorCode errorCode)
Called when an error happened while an ad is attempting to load or rendering an ad.
-
onAdResize
Unit onAdResize()
Called when an ad is resized.
-
onAdUnloaded
Unit onAdUnloaded()
Called when a request comes in to unload an ad.
-
onAdMetaChanged
Unit onAdMetaChanged(Map<String, String> params)
Called when the meta data of an ad changes.
-
-
-
-