Package com.naver.ads.webview
Interface AdWebViewListener
-
- All Implemented Interfaces:
public interface AdWebViewListenerA listener for receiving notifications during the lifecycle of an AdWebView.
-
-
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 UnitonAdCommanded(Uri uri)Called when a command comes into an ad. abstract UnitonAdError(AdWebViewErrorCode errorCode)Called when an error happened while an ad is attempting to load or rendering an ad. -
-
Method Detail
-
onAdLoaded
abstract Unit onAdLoaded()
Called when an ad has successfully been loaded.
-
onAdClicked
abstract Unit onAdClicked()
Called when an ad is clicked.
-
onAdCommanded
abstract Unit onAdCommanded(Uri uri)
Called when a command comes into an ad.
-
onAdError
abstract Unit onAdError(AdWebViewErrorCode errorCode)
Called when an error happened while an ad is attempting to load or rendering an ad.
-
-
-
-