gpt4 book ai didi

flutter - Google AdMob 奖励视频有时只加载

转载 作者:行者123 更新时间:2023-12-05 07:18:37 24 4
gpt4 key购买 nike

我正在尝试在我的应用程序中实现广告。目前我正在研究 Google Ad Mobs 奖励视频广告。我的问题是,在我第一次按下应该加载广告的按钮后,错误变为:

Unhandled Exception: PlatformException(ad_not_loaded, show failed for rewarded video, no ad was loaded, null)

被抛出,但如果我再次按下它会正常工作。我附上了一些相关代码

设置定位信息,加载广告并创建监听器:

  @override
void initState() {

MobileAdTargetingInfo targetingInfo = MobileAdTargetingInfo(
keywords: <String>['flutterio', 'beautiful apps'],
contentUrl: 'https://flutter.io',
childDirected: false,
);

RewardedVideoAd.instance.load(
targetingInfo: targetingInfo,
adUnitId: RewardedVideoAd.testAdUnitId);

RewardedVideoAd.instance.listener =
(RewardedVideoAdEvent event, {String rewardType, int rewardAmount}) {
if (event == RewardedVideoAdEvent.rewarded) {
Navigator.push(
context,
this.route);
}
else if(event == RewardedVideoAdEvent.failedToLoad){
Navigator.push(
context,
this.route);
}
};
super.initState();
}

启动广告的按钮(位于同一类的构建方法中):

              GestureDetector(
child: AdButton(theme.wopGH, "Gratis spielen"),
onTap: () {
RewardedVideoAd.instance.show();
},
),

最佳答案

只有在加载广告时才应启用您的按钮。在显示它之前,您必须等待它加载,这需要几秒钟。在 initState 上,你应该为你的按钮分配一个状态,这样它就会被禁用。加载广告后,您应该设置状态以启用它。

if (event == RewardedVideoAdEvent.loaded) {
...
}

关于flutter - Google AdMob 奖励视频有时只加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58236352/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com