Versions Compared

Key

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

...

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

  2. interstitialAdHandler.show(광고가_노출될_Activity.this)를 호출하여 광고를 호출합니다.

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

...