內嵌自動調整橫幅廣告

自動調整橫幅廣告則可讓您指定廣告寬度,以決定最佳廣告大小。此外,自動調整橫幅廣告會針對各種裝置調整廣告大小,盡可能提高成效。這種做法可改善效能。

與錨定自動調整橫幅廣告相比,內嵌自動調整橫幅廣告尺寸較大、高度較高,且採用可變高度 (而非固定高度)。內嵌自動調整橫幅廣告的高度可變,可能會涵蓋整個畫面,或您指定的高度上限。

您可以在捲動內容中放置內嵌自動調整橫幅廣告,例如:

圖表:顯示自動調整橫幅廣告和內嵌自動調整橫幅廣告的差異

事前準備

繼續操作之前,請確認您具備下列項目:

  • Google Mobile Ads SDK 8.10.0 以上版本。
  • 完成橫幅廣告新手上路指南。

導入自動調整橫幅廣告

與錨定自動調整橫幅廣告不同,內嵌轉接程式廣告會使用內嵌自動調整橫幅廣告大小載入。如要建立內嵌式自動調整廣告尺寸,請完成下列步驟:

  1. 取得所用裝置的寬度,或者,如果您不想使用畫面的完整寬度,請自行設定需要的寬度。
  2. 針對廣告尺寸類別使用適當的靜態方法 (例如 GADCurrentOrientationInlineBannerAdSizeWithWidth(CGFloat width)),取得所選螢幕方向的內嵌式自動調整廣告尺寸物件。
  3. 如果您想限制橫幅的高度,請使用靜態方法 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.

在應用程式中導入自動調整橫幅廣告時,請注意下列事項:

  • 內嵌式自動調整橫幅廣告尺寸最適合使用可用的完整寬度。在大多數情況下,這個大小是所用裝置螢幕的完整寬度,或是橫幅的父項內容完整寬度。您必須知道要放入廣告的檢視畫面寬度、裝置寬度、父項內容寬度,以及適用的安全區域。
  • 您可能需要更新或建立新的委刊項,才能搭配自動調整大小使用。瞭解詳情

自動調整內嵌橫幅廣告大小的方向

如要為特定方向預先載入內嵌式自動調整橫幅廣告,請使用下列方法:

如果您的應用程式同時支援直向和橫向檢視畫面,且您想在目前的螢幕方向預先載入自動調整橫幅廣告,請使用 GADCurrentOrientationInlineAdaptiveBannerAdSizeWithWidth(CGFloat width)。這個方法會在目前的螢幕方向載入廣告。

限制內嵌自動調整橫幅廣告的高度

根據預設,未指定 maxHeight 值而例項化的內嵌自動調整橫幅廣告,其 maxHeight 會等於裝置高度。如要限制內嵌自動調整橫幅廣告的高度,請使用 GADInlineAdaptiveBannerAdSizeWithWidthAndMaxHeight(CGFloat width, CGFloat maxHeight) 方法。

其他資源

GitHub 上的範例

下載範例應用程式,瞭解內嵌自動調整橫幅廣告的實際運作情形。

Swift Objective-C