插页式广告是全屏广告,它会覆盖整个应用界面,直到用户将其关闭。这些广告通常会在应用流程的自然过渡点(例如,活动之间或游戏关卡之间的暂停时段)展示。当应用展示插页式广告时,用户可以选择点按广告,访问其目标网址,也可以将其关闭,返回应用。案例研究。
本指南将向您介绍如何使用 Google 移动广告 C++ SDK 将插页式广告植入到 Android 和 iOS 应用中。
前提条件
- 完成入门指南。
- (仅限 Android)熟悉 JNI
jobject
引用(请参阅 Android JNI 提示)。
务必用测试广告进行测试
在构建和测试应用时,请确保使用的是测试广告,而不是实际投放的广告。否则,可能会导致您的账号被中止。
对于插页式广告,加载测试广告最简便的方法就是使用我们的专用测试广告单元 ID,该 ID 因设备平台而异:
- Android:
ca-app-pub-3940256099942544/1033173712
- iOS:
ca-app-pub-3940256099942544/4411468910
这些测试广告单元 ID 已经过专门配置,可为每个请求返回测试广告,您可以在自己应用的编码、测试和调试过程中随意使用这些测试广告单元 ID。只需确保您会在发布应用前用自己的广告单元 ID 替换该测试广告单元 ID 即可。
如需详细了解移动广告 SDK 的测试广告如何运作,请参阅测试广告。
实现
植入插页式广告的主要步骤如下所示:
- 加载广告。
- 注册回调。
- 展示广告并处理其生命周期事件。
配置 InterstitialAd
插页式广告在 InterstitialAd
对象中展示,因此将插页式广告集成到您应用中的第一步是创建并初始化 InterstitialAd
对象。
将以下头文件添加到应用的 C++ 代码中:
#include "firebase/gma/interstial_ad.h"
声明并实例化一个
InterstitialAd
对象:firebase::gma::InterstitialAd* interstitial_ad; interstitial_ad = new firebase::gma::InterstitialAd();
使用父视图投射为
AdParent
类型来初始化InterstitialAd
实例。父视图是对 AndroidActivity
的 JNIjobject
引用或指向 iOSUIView
的指针。// my_ad_parent is a jobject reference to an Android Activity or // a pointer to an iOS UIView. firebase::gma::AdParent ad_parent = static_cast<firebase::gma::AdParent>(my_ad_parent); firebase::Future<void> result = interstitial_ad->Initialize(ad_parent);
除了将 Future 保留为变量之外,您还可以通过对
InterstitialAd
对象调用InitializeLastResult()
来定期检查初始化操作的状态。这可能有助于跟踪全局游戏循环中的初始化过程。// Monitor the status of the future in your game loop: firebase::Future<void> result = interstitial_ad->InitializeLastResult(); if (result.status() == firebase::kFutureStatusComplete) { // Initialization completed. if(future.error() == firebase::gma::kAdErrorCodeNone) { // Initialization successful. } else { // An error has occurred. } } else { // Initialization on-going. }
如需详细了解如何使用 firebase::Future
,请参阅使用 Future 来监控方法调用的完成状态。
加载广告
广告的加载是通过针对 InterstitialAd
对象使用 LoadAd()
方法完成的。该 load 方法要求您已初始化 InterstitialAd
对象,并且您拥有广告单元 ID 和 AdRequest
对象。系统会返回一个 firebase::Future
,您可以使用该 firebase::Future
来监控加载操作的状态和结果。
以下代码展示了如何在 InterstitialAd
成功初始化后加载广告:
firebase::gma::AdRequest ad_request;
firebase::Future<firebase::gma::AdResult> load_ad_result;
load_ad_result = interstitial_ad->LoadAd(interstitial_ad_unit_id, ad_request);
注册回调
您必须扩展 FullScreenContentListener
类,才能接收插页式广告展示和生命周期事件的通知。您可以通过 InterstitialAd::SetFullScreenContentListener()
方法注册自定义 FullScreenContentListener
子类,该子类将在广告成功或失败展示以及被关闭时收到回调。
以下代码显示了如何扩展类并将其分配给广告:
class ExampleFullScreenContentListener : public firebase::gma::FullScreenContentListener { public: ExampleFullScreenContentListener() {} void OnAdClicked() override { // This method is invoked when the user clicks the ad. } void OnAdDismissedFullScreenContent() override { // This method is invoked when the ad dismisses full screen content. } void OnAdFailedToShowFullScreenContent(const AdError& error) override { // This method is invoked when the ad failed to show full screen content. // Details about the error are contained within the AdError parameter. } void OnAdImpression() override { // This method is invoked when an impression is recorded for an ad. } void OnAdShowedFullScreenContent() override { // This method is invoked when the ad showed its full screen content. } }; ExampleFullScreenContentListener* full_screen_content_listener = new ExampleFullScreenContentListener(); interstitial_ad->SetFullScreenContentListener(full_screen_content_listener);
InterstitialAd
是一次性对象。也就是说,插页式广告展示一次后就不能再展示了。最佳做法是在 FullScreenContentListener
的 OnAdDismissedFullScreenContent()
方法中加载另一个插页式广告,以便在上一个插页式广告关闭后,立即开始加载下一个插页式广告。
展示广告
插页式广告应在应用流程的自然停顿期间进行展示,例如游戏的不同关卡之间或用户完成一项任务之后,都是非常不错的展示时机。虽然 FullScreenContentListener
可用于确定广告何时展示其全屏内容,但 Show()
返回的 Future 将在广告成功展示时发出信号。
firebase::Future<void> result = interstitial_ad->Show();
最佳做法
- 考虑插页式广告这种广告类型是否适合您的应用。
- 在具有自然过渡点的应用中,插页式广告的效果最好。此类过渡点通常存在于应用内的任务结束时,例如分享完图片或完成一个游戏关卡时。用户希望可以在操作过程中休息一下,因此这时展示插页式广告不会影响用户体验。请务必考虑在应用流程的哪些时间点展示插页式广告,以及用户可能会以什么方式响应。
- 请务必在展示插页式广告时暂停操作。
- 插页式广告类型多样,包括文字广告、图片广告和视频广告等。确保应用在展示插页式广告时,也会暂停使用某些资源,以便供广告使用,这一点十分重要。例如,当您发出展示插页式广告的调用后,请务必暂停应用产生的所有音频输出。您可以在已安装的
FullScreenContentListener
的OnAdDismissedFullScreenContent
方法中恢复声音播放,当用户结束与广告的互动时,系统就会调用这个方法。此外,请考虑在广告展示时暂停所有密集计算任务,例如游戏循环。这样可以确保用户不会遇到图像无响应、响应慢或视频卡顿的现象。 - 留出充足的加载时间。
- 确保在恰当的时间展示插页式广告十分重要,同样,确保用户无需等待广告加载也十分重要。在您打算展示广告之前,提前加载插页式广告可确保应用在广告展示时间到来时,已准备好加载完毕的插页式广告。
- 不要向用户展示太多广告。
- 虽然提高插页式广告在应用中的展示频次似乎是实现增收的好方法,但这么做也会影响用户体验并降低点击率。应确保用户不会频繁受到广告打扰,使他们可以充分享受到使用应用的乐趣。
- 不要使用加载完成 Future 展示插页式广告。
- 这可能会导致用户体验不佳。不过,您可以在需要展示相应广告之前进行预加载。
其他资源
GitHub 中的示例
- 在 GitHub 中查看快速入门应用示例的源代码。