1
我爲我的應用程序創建了自定義AdLoader。但它總是加載內容廣告並且不會安裝廣告。如果我刪除.forContentAd
我將獲得安裝廣告,但如果我離開這兩個廣告,我只會收到內容廣告。誰能告訴我爲什麼?AdLoader始終加載內容廣告
這裏是我的代碼:
new AdLoader.Builder(activityContext, getString(R.string.test_admob_unit_id))
.forContentAd(new NativeContentAd.OnContentAdLoadedListener() {
@Override
public void onContentAdLoaded(NativeContentAd contentAd) {
adQueue.add(contentAd);
}
})
.forAppInstallAd(new NativeAppInstallAd.OnAppInstallAdLoadedListener() {
@Override
public void onAppInstallAdLoaded(NativeAppInstallAd appInstallAd) {
adQueue.add(appInstallAd);
}
})
.withAdListener(new AdListener() {
@Override
public void onAdFailedToLoad(int errorCode) {
// Handle the failure by logging, altering the UI, etc.
}
})
.withNativeAdOptions(new NativeAdOptions.Builder()
// Methods in the NativeAdOptions.Builder class can be
// used here to specify individual options settings.
.build())
.build();