팝업 지면은 전면광고와 유사하게 앱을 완전히 덮으면서 노출됩니다. 팝업 지면은 위치에 따라 하단, 중앙 두가지 타입의 UI를 제공하고 있어 원하는 기획에 맞게 선택하여 연동할 수 있습니다.
팝업 광고 노출하기
val popupAd =AdropPopupAd(context, "YOUR_UNIT_ID")popupAd.run { closeTextColor = your_color_int // optional hideForTodayTextColor = your_color_int // optional backgroundColor = your_color_int // optional popupAdListener =object:AdropPopupAdListener {overridefunonAdReceived(ad: AdropPopupAd) { Log.d("Adrop", "popup ad received") }overridefunonAdFailedToReceive(ad: AdropPopupAd, errorCode: AdropErrorCode) { Log.d("Adrop", "popup ad failed to receive $errorCode") } }load()}...// call show function when the ad needs to be displayed.popupAd.show(activity)
AdropPopupAd popupAd =newAdropPopupAd(context,"YOUR_UNIT_ID");popupAd.setPopupAdListener(newAdropPopupAdListener() { @OverridepublicvoidonAdReceived(@NotNullAdropPopupAd ad) {Log.d("Adrop","popup ad received"); } @OverridepublicvoidonAdFailedToReceive(@NotNullAdropPopupAd ad, @NotNullAdropErrorCode errorCode) {Log.d("Adrop","popup ad failed to receive error: "+ errorCode); } @OverridepublicvoidonAdFailedToShowFullScreen(@NotNullAdropPopupAd ad, @NotNullAdropErrorCode errorCode) {Log.d("Adrop","popup ad failed to show full screen, error: "+ errorCode); }...}popupAd.setBackgroundColor(your_color_int); // optionalpopupAd.setCloseTextColor(your_color_int); // optionalpopupAd.setHideForTodayTextColor(your_color_int); // optionalpopupAd.load();...// call show function when the ad needs to be displayed.popupAd.show(activity);
팝업 광고 Destroy
AdropPopupAd 노출을 종료한다면, 네이티브 광고가 garbage collection 되도록 다음과 같이 destroy해야합니다.