Table of Contents |
---|
개요
...
Interstitial 광고는 미리 정의된 UI로 앱 위를 완전히 덮으면서 노출되는 전면광고입니다지면은 BuzzAd Android SDK에서 제공하는 UI를 사용해 앱을 완전히 덮으면서 노출됩니다. 제공하는 UI로 쉽게 연동할 수 있으며, 광고 지면이 앱을 덮고 있어서 앱 UI 와의 조합을 고려하지 않고 노출하기 용이합니다.
준비 사항
(ver 2.25.x) 2. 시작하기 적용 완료
Native Interstitial 지면에 사용할 Unit ID (이하
YOUR_INTERSTITIAL_UNIT_ID
)
광고
...
표시
Unit id를 설정하고, Interstitial 의 형태를 결정한 후 show()
를 호출하여 지면을 표시합니다.
Code Block | ||
---|---|---|
| ||
final InterstitialAdHandler interstitialAdHandler = new InterstitialAdHandlerFactory() .create("YOUR_INTERSTITIAL_UNIT_ID", InterstitialAdHandler.Type.Dialog); interstitialAdHandler.show(context); |
Interstitial 광고는 Dialog와 BottomSheet의 다이얼로그와 바텀시트의 UI를 제공합니다. 위에서 InterstitialAdHandler 설정시 다이얼로그와 바텀시트 각각 InterstitialAdHandler.Type.Dialog
또는 InterstitialAdHandler.Type.BottomSheet
으로 설정할 수 있습니다. 이미지는 개요에 있습니다.