0

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

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

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

4

1 回答 1

0

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

安卓

if (Chartboost.hasInterstitial(CBLocation.LOCATION_HOME_SCREEN)) {
    Chartboost.showInterstitial(CBLocation.LOCATION_HOME_SCREEN);
}
else {
    Chartboost.cacheInterstitial(CBLocation.LOCATION_HOME_SCREEN);
}
于 2015-07-06T18:57:55.193 回答