自動調整橫幅廣告可讓您指定廣告寬度,從而決定最合適的廣告大小。此外,自動調整橫幅廣告會自動調整廣告大小,盡可能提高成效 。這種做法可改善效能。
與錨定自動調整橫幅廣告相比,內嵌自動調整橫幅廣告更大 並使用變數而非固定高度內嵌自動調整橫幅廣告的高度可變,可能會涵蓋整個畫面,或您指定的高度上限。
舉例來說,您可以將內嵌自動調整橫幅廣告刊登在捲動內容中,例如:
事前準備
繼續操作之前,請先確認您具備以下項目:
導入自動調整橫幅廣告
與錨定自動調整橫幅廣告不同,內嵌轉接程式廣告會使用內嵌自動調整橫幅廣告大小載入。如要建立內嵌自動調整廣告大小,請完成 包括:
- 取得所用裝置的寬度,或者,如果您不想使用畫面的完整寬度,請自行設定需要的寬度。
- 針對廣告尺寸類別使用適當的靜態方法 (例如
GADCurrentOrientationInlineBannerAdSizeWithWidth(CGFloat width)
),取得所選螢幕方向的內嵌式自動調整廣告尺寸物件。 - 如要限制橫幅廣告的高度,請使用靜態方法
GADInlineAdaptiveBannerAdSizeWithWidthAndMaxHeight(CGFloat width, CGFloat maxHeight)
,直接在 Google Cloud 控制台實際操作。
以下範例說明這些步驟:
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 = GADBannerView(adSize: adSize)
bannerView.adUnitID = "<var>ad unit ID</var>"
bannerView.rootViewController = self
// Step 3: Load an ad.
let request = GADRequest()
bannerView.load(request)
// TODO: Insert banner view in table view or scroll view, etc.
目標-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.
GADBannerView bannerView = [[GADBannerView alloc] initWithAdSize:adSize];
bannerView.adUnitID = @"<var>ad unit ID</var>";
bannerView.rootViewController = self;
// Step 3: Load an ad.
GADRequest *request = [GADRequest 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 上的範例
下載範例應用程式,查看內嵌自動調整橫幅廣告的運作情形。