Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

개요

Interstitial 광고는 미리 정의된 UI로 앱 위를 완전히 덮으면서 노출되는 전면광고입니다.

준비 사항

광고 보여주기

InterstitialAdHandler 인스턴스를 생성한 후, show(context)를 호출합니다.

final InterstitialAdHandler interstitialAdHandler = new InterstitialAdHandlerFactory()
        .create("YOUR_INTERSTITIAL_UNIT_ID", InterstitialAdHandler.Type.Dialog);
interstitialAdHandler.show(context);

Interstitial 광고는 Dialog와 BottomSheet의 UI를 제공합니다. 위에서 InterstitialAdHandler 설정시 각각 InterstitialAdHandler.Type.Dialog 또는 InterstitialAdHandler.Type.BottomSheet으로 설정할 수 있습니다.

  • No labels