有没有关于如何实现android全屏广告的例子?
有没有关于如何使用 AdMob 为 android 实现全屏广告的示例?
我研究并找到了以下教程:
编辑 - 添加了一些相关问题:
- 在教程中,您似乎必须使用 Android 4.0 才能使插页式自家广告发挥作用。在早期版本中是不可能的吗?
Is there any examples of how to implement full-screen advertisement for android using AdMob?
I have researched and found these tutorials:
EDIT - added some related questions:
- In the tutorials it looks like you have to use Android 4.0 to get the interstitial house ads to work. Is it not possible in earlier versions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 AdMob 插页式文档,了解如何添加您的 Android 应用程序的插页式广告。但请注意,您需要加入插页式广告白名单才能从 AdMob 获取插页式广告。现在,您只能看到测试插页式广告,或您传送到应用程序的自家广告插页式广告。
编辑:
Google AdMob SDK v4.3.1 要求您将 android 构建目标设置为 android-13 (Android 3.2) 或更高版本。通过在清单中设置 minSdkVersion="3",您仍然可以在 Android 1.5 (android-3) 之前的设备上获取广告。
Please see the AdMob Interstitial documentation for how to add interstitials to your Android app. Please note, however, that you need to be whitelisted for interstitial ads to get interstitial ads from AdMob. Right now you will only be able to see the test interstitial ad, or a house ad interstitial that you traffic to your app.
EDIT:
The Google AdMob SDK v4.3.1 requires that you set your android build target to android-13 (Android 3.2) or higher. You can still get ads on devices all the way down to Android 1.5 (android-3) by setting the minSdkVersion="3" in your manifest.