我正在使用ExoPlayer的IMA扩展的自定义实现,以Vast标记未指定为mentioned here的自定义间隔显示广告。我使用的标签是here。我所做的是,我已将adsManager的提示点替换为自定义提示点。
if (this.adCuePoints != null)
adPlaybackState = new AdPlaybackState(getAdGroupTimesUs(this.adCuePoints));
else
adPlaybackState = new AdPlaybackState(getAdGroupTimesUs(adsManager.getAdCuePoints()));
广告会在片头广告中展示,但在插播广告中调用广告时,则不会显示任何广告,只会显示加载程序。 AdEventListener
和AdErrorListener
也没有登录。我该如何解决?