将多个 Admob 广告预加载到数组中?

发布于 2024-12-09 14:33:52 字数 426 浏览 1 评论 0原文

可能的重复:
有办法在 Android 上预加载 AdMob 广告吗?< /a>

我有一个文本视图库,我允许用户在它们之间切换。每一个都显示不同的 Admob 广告。唯一的问题是有延迟。 Google 广告需要几秒钟的时间才会显示。有谁知道如何在应用程序启动时异步填充一系列广告?

Possible Duplicate:
Is there a way to preload AdMob ads on Android?

I've got a gallery of textviews, and I allow the user to flip between them. Each one shows a different Admob advertisement. The only problem is that there is a delay. It takes a few seconds for the Google ad to show up. Does anyone know how I could populate an array of ads upon app startup, asynchronously?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱人如己 2024-12-16 14:33:52

来自 AdMob 内容指南

广告不应以任何方式预先缓存、缓存或存储。所有广告都应动态请求,并且在移动网站上,应在页面刷新时刷新。

而且从技术角度来说,SDK是这样写的,尽量不让你这么做。请求成功后就会显示横幅,并且在布局中移动 AdView 会很混乱。

From the AdMob content guidelines:

Ads should not be pre-cached, cached, or stored in any fashion. All ads should be requested dynamically and, on mobile sites, refreshed when the page is refreshed.

And from a technical perspective, the SDK is written in such a way to try to not let you do this. Banners are displayed as soon as the request is successful, and moving the AdView around in your layout is messy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文