Versions Compared

Key

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

광고 개수 설정

BottomSheet Interstitial 광고 중에 Bottom Sheet의 경우 의 경우 InterstitialAdConfig를 통해 광고 요청 개수를 Customize 할 설정할 수 있습니다. 설정된 InterstitialAdConfig는 interstitialAdHandler.show()를 호출할 때 넣어서 호출합니다.

  • adCount : 한번에 요청하는 광고의 개수. 1 ~ 5가 가능하며, adCount를 지정하지 않거나 1 ~ 5 외의 범위를 지정할 경우 5로 고정됨

Code Block
languagejava
 interstitialAdHandler.show(MainActivity.this,
    InterstitialAdConfig interstitialAdConfig = new InterstitialAdConfig.Builder()
   
        ...생략...
            .adCount(3)  // 1 ~ 5
      
     .build(),;

   nullinterstitialAdHandler.show(context, interstitialAdConfig);

종료에 대한 콜백

OnInterstitialAdEventListener를 등록하여 Interstitial 지면이 종료될 때 콜백을 받을 수 있습니다.

...