Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

개요

본 가이드는 BuzzAd

...

SDK의 Interstitial

...

광고를 연동하는 방법을 다루는 문서입니다.
Interstitial

...

광고는 네이티브 광고달리 미리 정의된 UI로 앱 위를 완전히 덮으면서 노출되는

...

전면광고입니다.

Bottom sheet 타입

Image Removed

Dialog 타입

...

Note

Interstitial 타입을 연동하기 전, 

...

시작하기의 연동 사항을 모두 적용했는지 확인해주세요.

...

전면광고 보여주기

  1. Interstitial

...

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

  2. interstitialAdHandler.show(

...

  1. context)를 호출하여 광고를 호출합니다.

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

...

  1. context);

Interstitial Type 설정

Interstitial

...

광고는 Dialog와 BottomSheet의 UI를 제공합니다. 위에서 InterstitialAdHandler 설정시

...

각각 InterstitialAdHandler.Type.Dialog 또는 InterstitialAdHandler.Type.BottomSheet으로

...

설정할 수 있습니다.