如果自適應橫幅廣告無法滿足您的需求,Google Mobile Ads SDK 支援固定廣告大小。
下表列出標準橫幅廣告尺寸。
大小以 dp 為單位 (寬 x 高) | 說明 | 可用性 | AdSize 常數 |
---|---|---|---|
320x50 | 橫幅廣告 | 手機和平板電腦 | GADAdSizeBanner |
320x100 | 大型橫幅 | 手機和平板電腦 | GADAdSizeLargeBanner |
300x250 | IAB 中矩形 | 手機和平板電腦 | GADAdSizeMediumRectangle |
468x60 | IAB 全尺寸橫幅 | 平板電腦 | GADAdSizeFullBanner |
728x90 | IAB 排行榜 | 平板電腦 | GADAdSizeLeaderboard |
如要定義自訂橫幅大小,請使用 GADAdSizeFromCGSize
設定大小:
Swift
let adSize = GADAdSizeFromCGSize(CGSize(width: 250, height: 250))
Objective-C
GADAdSize size = GADAdSizeFromCGSize(CGSizeMake(250, 250));
固定大小橫幅廣告示例
自訂廣告大小
除了標準廣告單元,Google Ad Manager 還可讓您在應用程式中放送任何大小的廣告單元。為廣告請求定義的廣告大小 (寬度、高度) 應與應用程式上顯示的廣告檢視畫面 (GAMBannerView
) 的尺寸相符。如要設定自訂大小,請使用 GADAdSizeFromCGSize
。
Swift
// Define custom GADAdSize of 250x250 for GAMBannerView.
let customAdSize = GADAdSizeFromCGSize(CGSize(width: 250, height: 250))
bannerView = GAMBannerView(adSize: customAdSize)
Objective-C
// Define custom GADAdSize of 250x250 for GAMBannerView
GADAdSize customAdSize = GADAdSizeFromCGSize(CGSizeMake(250, 250));
self.bannerView = [[GAMBannerView alloc] initWithAdSize:customAdSize];
多種廣告大小
Ad Manager 可讓您指定多個廣告大小,這些大小可在 GAMBannerView
中放送。使用這項功能需要完成三個步驟:
在 Ad Manager 使用者介面中,建立委刊項,指定與不同大小廣告素材相關聯的相同廣告單元。
在應用程式中,將
GAMBannerView
的validAdSizes
屬性設為:Swift
// Define an optional array of GADAdSize to specify all valid sizes that are appropriate // for this slot. Never create your own GADAdSize directly. Use one of the // predefined standard ad sizes (such as GADAdSizeBanner), or create one using // the GADAdSizeFromCGSize method. // // Note: Ensure that the allocated GAMBannerView is defined with an ad size. Also note // that all desired sizes should be included in the validAdSizes array. bannerView.validAdSizes = [NSValueFromGADAdSize(GADAdSizeBanner), NSValueFromGADAdSize(GADAdSizeMediumRectangle), NSValueFromGADAdSize(GADAdSizeFromCGSize(CGSize(width: 120, height: 20)))]
Objective-C
// Define an optional array of GADAdSize to specify all valid sizes that are appropriate // for this slot. Never create your own GADAdSize directly. Use one of the // predefined standard ad sizes (such as GADAdSizeBanner), or create one using // the GADAdSizeFromCGSize method. // // Note: Ensure that the allocated GAMBannerView is defined with an ad size. Also note // that all desired sizes should be included in the validAdSizes array. self.bannerView.validAdSizes = @[ NSValueFromGADAdSize(GADAdSizeBanner), NSValueFromGADAdSize(GADAdSizeMediumRectangle), NSValueFromGADAdSize(GADAdSizeFromCGSize(CGSizeMake(120, 20))) ];
實作
GADAdSizeDelegate
方法,以便偵測廣告大小變更。Swift
public func bannerView(_ bannerView: GADBannerView, willChangeAdSizeTo size: GADAdSize)
Objective-C
- (void)bannerView:(GAMBannerView *)view willChangeAdSizeTo:(GADAdSize)size;
請記得在提出廣告請求前設定委派作業。
Swift
bannerView.adSizeDelegate = self
Objective-C
self.bannerView.adSizeDelegate = self;