如何检查Chartboost的插页式广告是否已加载?否则使用admob

时间:2015-03-03 02:50:00

标签: android eclipse admob interstitial chartboost

我是android的初学者,我想要投放广告。我想知道如何检查是否加载了charboost的插页式广告。没关系?:

Chartboost.cacheInterstitial(CBLocation.LOCATION_DEFAULT);
                if(Chartboost.hasInterstitial(CBLocation.LOCATION_DEFAULT)){
                    //displayInterstitial();
                    Chartboost.showInterstitial(CBLocation.LOCATION_DEFAULT);
                }else{
                    displayInterstitial();
                }

我认为它有效,但不想搞砸

1 个答案:

答案 0 :(得分:0)

它在Chartboost Documentation。请参阅高级主题中的“缓存”。

的Android

if (Chartboost.hasInterstitial(CBLocation.LOCATION_HOME_SCREEN)) {
    Chartboost.showInterstitial(CBLocation.LOCATION_HOME_SCREEN);
}
else {
    Chartboost.cacheInterstitial(CBLocation.LOCATION_HOME_SCREEN);
}