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 4 Next »

개요

Interstitial 지면은 BuzzAd Android SDK에서 제공하는 UI를 사용해 앱을 완전히 덮으면서 노출됩니다. 제공하는 UI로 쉽게 연동할 수 있으며, 광고 지면이 앱을 덮고 있어서 앱 UI 와의 조합을 고려하지 않고 노출하기 용이합니다.

준비 사항

광고 표시

Unit id를 설정하고, Interstitial 의 형태를 결정한 후 show()를 호출하여 지면을 표시합니다.

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

Interstitial 광고는 다이얼로그와 바텀시트의 UI를 제공합니다. 다이얼로그와 바텀시트 각각 InterstitialAdHandler.Type.Dialog 또는 InterstitialAdHandler.Type.BottomSheet으로 설정할 수 있습니다. 이미지는 개요에 있습니다.

  • No labels