מודעות באנר בגודל קבוע

‏Google Mobile Ads SDK תומך בגדלים קבועים של מודעות למקרים שבהם מודעות באנר רספונסיביות לא עומדות בצרכים שלכם.

בטבלה הבאה מפורטים הגדלים הרגילים של מודעות באנר.

גודל ב-dp (WxH) תיאור זמינות קבוע של גודל המודעה
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

גודל מודעה בהתאמה אישית

בנוסף ליחידות המודעות הרגילות, מערכת 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. כדי להשתמש בתכונה הזו, צריך לבצע שלושה שלבים:

  1. בממשק המשתמש של Ad Manager, יוצרים פריט שמטרגט את אותה יחידת מודעות שמשויכת לקריאייטיבים בגדלים שונים.

  2. באפליקציה, מגדירים את המאפיין validAdSizes ב-GAMBannerView:

    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)))
    ];
    
  3. מטמיעים את השיטה 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;
    

דוגמה לכמה גדלים של מודעות

Swift Objective-C