2015-03-03 48 views
0

我是Android的初學者,我想放廣告。我想知道如何檢查是否加載了charboost插頁式廣告。這是確定?:如何檢查Chartboost的插頁式廣告是否已加載?否則使用admob

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

,我認爲它的工作原理,但不想搞砸了

+0

你讀過他們的文檔? – Elltz 2015-03-03 06:09:09

+0

是的,但我沒有在這個問題上找到。無論如何,我的英語不是很好,也許這就是爲什麼,請諮詢。 – 2015-03-04 12:36:48

回答

0

正是在Chartboost Documentation。請參閱高級主題中的「緩存」。

的Android

if (Chartboost.hasInterstitial(CBLocation.LOCATION_HOME_SCREEN)) { 
    Chartboost.showInterstitial(CBLocation.LOCATION_HOME_SCREEN); 
} 
else { 
    Chartboost.cacheInterstitial(CBLocation.LOCATION_HOME_SCREEN); 
} 
相關問題