借助自适应横幅广告,您可以指定广告的宽度,以确定最佳广告尺寸。自适应横幅广告还可针对每台设备优化广告尺寸,从而最大限度地提升广告效果。此方法可提升性能。
与锚定自适应横幅广告相比,内嵌自适应横幅广告是一种更大、更高的横幅广告,使用的是可变高度而非固定高度。内嵌型自适应横幅广告的高度可变,并且可能占据整个屏幕或您指定的高度上限。
您可以在滚动显示的内容中放置内嵌自适应横幅广告,例如:
准备工作
在继续操作之前,请确保您拥有以下内容:
- Google 移动广告 SDK 8.10.0 或更高版本。
- 已完成横幅广告入门指南。
植入自适应横幅广告
与锚定自适应横幅广告不同,内嵌适配器横幅广告使用内嵌自适应横幅广告尺寸进行加载。如需创建内嵌自适应广告尺寸,请完成以下操作:
- 获取所用设备的宽度,或者自行设置宽度(如果您不想使用屏幕的全宽)。
- 对广告尺寸类使用相应的静态方法(例如
GADCurrentOrientationInlineBannerAdSizeWithWidth(CGFloat width)
),获取所选屏幕方向的内嵌自适应广告尺寸对象。 - 如果您想限制横幅广告的高度,请使用静态方法
GADInlineAdaptiveBannerAdSizeWithWidthAndMaxHeight(CGFloat width, CGFloat maxHeight)
。
以下示例演示了这些步骤:
Swift
// Step 1: Create an inline adaptive banner ad size. This size is used to
// request your adaptive banner. You can pass in the width of the device, or
// set your own width. This example sets a static width.
let adSize = GADCurrentOrientationInlineAdaptiveBannerAdSizeWithWidth(320)
// Step 2: Create banner with the inline size and set ad unit ID.
let bannerView = GAMBannerView(adSize: adSize)
bannerView.adUnitID = "<var>ad unit ID</var>"
bannerView.rootViewController = self
// For Ad Manager, the `adSize` property is used for the adaptive banner ad
// size. The `validAdSizes` property is used as normal for the supported
// reservation sizes for the ad placement.
bannerView.validAdSizes = [NSValueFromGADAdSize(GADAdSizeBanner)]
// Step 3: Load an ad.
let request = GAMRequest()
bannerView.load(request)
// TODO: Insert banner view in table view or scroll view, etc.
Objective-C
// Step 1: Create an inline adaptive banner ad size. This size is used to
// request your adaptive banner. You can pass in the width of the device, or set
// your own width. This example sets a static width.
GADAdSize *adSize = GADCurrentOrientationInlineAdaptiveBannerAdSizeWithWidth(320);
// Step 2: Create banner with the inline size and set ad unit ID.
GAMBannerView bannerView = [[GAMBannerView alloc] initWithAdSize:adSize];
bannerView.adUnitID = @"<var>ad unit ID</var>";
bannerView.rootViewController = self;
// For Ad Manager, the adSize property is used for the adaptive banner ad size.
// The validAdSizes property is used as normal for the supported reservation
// sizes for the ad placement. This is optional and only needed if you wish to
// support reservation ad sizes.
bannerView.validAdSizes = @[ NSValueFromGADAdSize(GADAdSizeBanner) ];
// Step 3: Load an ad.
GAMRequest *request = [GAMRequest request];
[bannerView loadRequest:request];
// TODO: Insert banner view in table view or scroll view, etc.
在应用中植入自适应横幅广告时,请注意以下几点:
- 内嵌自适应横幅广告尺寸在占满可用宽度时效果最佳。在大多数情况下,此大小是所用设备屏幕的全宽,或横幅的父级内容的全宽。您必须知道要在广告中放置的视图的宽度、设备宽度、父级内容宽度和适用的安全区域。
- 您可能需要更新或创建新订单项才能采用自适应尺寸。了解详情。
内嵌自适应横幅广告尺寸的方向
如需针对特定屏幕方向预加载内嵌自适应横幅广告,请使用以下方法:
GADPortraitInlineAdaptiveBannerAdSizeWithWidth(CGFloat width)
GADLandscapeInlineAdaptiveBannerAdSizeWithWidth(CGFloat width)
如果您的应用同时支持纵向和横向视图,并且您希望在当前屏幕方向下预加载自适应横幅广告,请使用 GADCurrentOrientationInlineAdaptiveBannerAdSizeWithWidth(CGFloat width)
。此方法会在当前屏幕方向下加载广告。
限制内嵌自适应横幅广告的高度
默认情况下,未使用 maxHeight
值实例化的内嵌自适应横幅广告的 maxHeight
等于设备高度。如需限制内嵌自适应横幅广告的高度,请使用 GADInlineAdaptiveBannerAdSizeWithWidthAndMaxHeight(CGFloat width, CGFloat maxHeight)
方法。
其他资源
GitHub 上的示例
下载示例应用,查看内嵌自适应横幅广告的实际效果。