Table of Contents |
---|
광고 개수 설정
Interstitial 광고 중에 Bottom Sheet의 경우 광고 요청 개수를 Customize 할 수 있습니다. 설정된 InterstitialAdConfig
는 interstitialAdHandler.show()
를 호출할 때 넣어서 호출합니다.
adCount
: 한번에 요청하는 광고의 개수. 1 ~ 5가 가능하며, adCount를 지정하지 않거나 1 ~ 5 외의 범위를 지정할 경우 5로 고정됨
Code Block | ||
---|---|---|
| ||
interstitialAdHandler.show(MainActivity.this,
new InterstitialAdConfig.Builder()
...(생략)...
.adCount(3) // 1 ~ 5
.build(),
null); |
종료에 대한 콜백
OnInterstitialAdEventListener
를 등록하여 Interstitial 지면이 종료될 때 콜백을 받을 수 있습니다.
...