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

Version 1 Next »

개요

본 가이드는 BuzzAd SDK의 Interstitial 광고를 연동하는 방법을 다루는 문서입니다.
Interstitial 광고는 네이티브 광고와 달리 미리 정의된 UI로 앱 위를 완전히 덮으면서 노출되는 전면광고입니다.

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

전면광고 보여주기

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

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

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

Interstitial Type 설정

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

  • No labels