Versions Compared

Key

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

...

광고 표시

Unit id를 설정하고, Interstitial 의 형태를 결정한 후 show()를 호출하여 지면을 표시합니다. BuzzAd Android SDK의 Interstitial 지면은 다이얼로그와 바텀시트의 UI를 제공합니다. 다이얼로그와 바텀시트 각각 InterstitialAdHandler.Type.Dialog 또는 InterstitialAdHandler.Type.BottomSheet으로 설정할 수 있습니다.

다음은 다이얼로그형태의 Interstitial 지면을 표시하는 예시입니다.

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

...