Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

목차

광고 개수 설정

바텀 시트 형태의 Interstitial 지면은 InterstitialAdConfig을 설정하여 광고 요청 개수를 설정할 수 있습니다.

InterstitialAdConfig interstitialAdConfig = new InterstitialAdConfig.Builder()
    ...생략...
    .adCount(3)  // 1 ~ 5 
    .build();

interstitialAdHandler.show(context, interstitialAdConfig);

종료에 대한 콜백

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

interstitialAdHandler.show(MainActivity.this, interstitialAdConfig, new InterstitialAdHandler.OnInterstitialAdEventListener() {
    
    ...생략...
    
    @Override
    public void onFinish() {
      // 인터스티셜 종료시
    }
}); 

광고 요청 결과에 대한 콜백

OnInterstitialAdEventListener를 등록하여 광고 요청에 실패한 경우에 대해 콜백을 받을 수 있습니다.

interstitialAdHandler.show(MainActivity.this, interstitialAdConfig, new InterstitialAdHandler.OnInterstitialAdEventListener() {

    ...생략 ...
    
    @Override
    public void onAdLoadFailed(AdError error) {
        // 로드 실패시. error를 통해 로드 실패 이유를 알 수 있음
    }

    @Override
    public void onAdLoaded() {
        // 로드 성공시
    }
});

  • No labels