发布于 2020-02-07 12:27:22
阅读官方的文档
限制 这个插件目前有一些限制:
发布于 2021-01-09 07:39:29
如果您使用智能横幅,它会根据设备高度调整高度,因此,如果您想要一个小横幅不要使用smartBanner,请使用横幅。
横幅的固定高度为50。
尺寸: AdSize.banner
BannerAd myBanner = BannerAd(
// Replace the testAdUnitId with an ad unit id from the AdMob dash.
// https://developers.google.com/admob/android/test-ads
// https://developers.google.com/admob/ios/test-ads
adUnitId: BannerAd.testAdUnitId,
size: AdSize.banner,
targetingInfo: targetingInfo,
listener: (MobileAdEvent event) {
print("BannerAd event is $event");
},
);
https://stackoverflow.com/questions/60120107
复制