Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

본 가이드는 BuzzAd SDK의 Interstitial 타입 광고를 연동하는 방법을 다루는 문서입니다.
Interstitial 타입은 광고는 /wiki/spaces/~79598069/pages/1989937432달리 미리 정의된 UI로 앱 위를 완전히 덮으면서 노출되는 전면광고입니다.

...

  1. Interstitial Unit ID와 InterstitialAdHandler의 타입 (Dialog 또는 Bottomsheet, 자세한 내용은 아래 참조)을 사용하여 InterstitialAdHandler를 생성합니다.

  2. interstitialAdHandler.show(MainActivity.thiscontext)를 호출하여 광고를 호출합니다.

    Code Block
    languagejava
    final InterstitialAdHandler interstitialAdHandler = new InterstitialAdHandlerFactory()
            .create("YOUR_INTERSTITIAL_UNIT_ID", InterstitialAdHandler.Type.Dialog);
    interstitialAdHandler.show(MainActivity.thiscontext);

Interstitial Type 설정

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

...