固定大小橫幅廣告
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
如果自適應橫幅廣告無法滿足您的需求,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));
固定大小橫幅廣告示例
Swift
Objective-C
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-11-23 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2024-11-23 (世界標準時間)。"],[[["The Google Mobile Ads SDK offers fixed ad sizes as an alternative to adaptive banners."],["Standard banner sizes include Banner (320x50), Large Banner (320x100), IAB medium rectangle (300x250), IAB full-size banner (468x60), and IAB leaderboard (728x90), each with specified availability for phones and/or tablets."],["Custom banner sizes can be defined using `GADAdSizeFromCGSize` by providing the desired width and height."],["Code examples for implementing fixed size banner ads are available in both Swift and Objective-C."]]],[]]