מודעות מותאמות מסוג Advanced

הצגת מודעה מותאמת

כשמודעה מותאמת נטענת, ה-Google Mobile Ads SDK מפעיל את המאזין של פורמט המודעה התואם. לאחר מכן, האפליקציה שלכם אחראית להצגת המודעה, אבל היא לא חייבת לעשות זאת באופן מיידי. כדי להקל על הצגת פורמטים של מודעות שהוגדרו על ידי המערכת, ב-SDK יש כמה משאבים שימושיים, כפי שמתואר בהמשך.

הכיתה NativeAdView

לפורמט NativeAd יש את הכיתה המתאימה NativeAdView. הכיתה הזו היא ViewGroup שבעזרתה בעלי תוכן דיגיטלי יכולים להשתמש כשורש של NativeAd. ערך NativeAdView יחיד תואם למודעה מותאמת אחת. כל תצוגה מפורטת שמשמשת להצגת הנכסים של המודעה (למשל, ImageView שמציגה את נכס צילום המסך) צריכה להיות צאצא של האובייקט NativeAdView.

היררכיית התצוגה של מודעה מותאמת שמשתמשת ב-LinearLayout כדי להציג את תצוגות הנכסים שלה עשויה להיראות כך:

<com.google.android.gms.ads.nativead.NativeAdView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <LinearLayout
    android:orientation="vertical">
        <LinearLayout
        android:orientation="horizontal">
          <ImageView
           android:id="@+id/ad_app_icon" />
          <TextView
            android:id="@+id/ad_headline" />
         </LinearLayout>
         <!--Add remaining assets such as the image and media view.-->
    </LinearLayout>
</com.google.android.gms.ads.nativead.NativeAdView>

דוגמה ליצירת NativeAdView ויישוב שלו באמצעות NativeAd:

Java

AdLoader.Builder builder = new AdLoader.Builder(this, "ca-app-pub-3940256099942544/2247696110")
    .forNativeAd(new NativeAd.OnNativeAdLoadedListener() {
        @Override
        public void onNativeAdLoaded(NativeAd nativeAd) {
            // Assumes you have a placeholder FrameLayout in your View layout
            // (with ID fl_adplaceholder) where the ad is to be placed.
            FrameLayout frameLayout =
                findViewById(R.id.fl_adplaceholder);
            // Assumes that your ad layout is in a file call native_ad_layout.xml
            // in the res/layout folder
            NativeAdView adView = (NativeAdView) getLayoutInflater()
                .inflate(R.layout.native_ad_layout, null);
            // This method sets the assets into the ad view.
            populateNativeAdView(nativeAd, adView);
            frameLayout.removeAllViews();
            frameLayout.addView(adView);
        }
});

Kotlin

val builder = AdLoader.Builder(this, "ca-app-pub-3940256099942544/2247696110")
    .forNativeAd { nativeAd ->
        // Assumes you have a placeholder FrameLayout in your View layout
        // (with ID fl_adplaceholder) where the ad is to be placed.
        val frameLayout: FrameLayout = findViewById(R.id.fl_adplaceholder)
        // Assumes that your ad layout is in a file call native_ad_layout.xml
        // in the res/layout folder
        val adView = layoutInflater
                .inflate(R.layout.native_ad_layout, null) as NativeAdView
        // This method sets the assets into the ad view.
        populateNativeAdView(nativeAd, adView)
        frameLayout.removeAllViews()
        frameLayout.addView(adView)
    }

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

בנוסף, הכיתות של תצוגת המודעות מספקות שיטות לצורך רישום התצוגה שמשמשת כל נכס בנפרד, ושיטה אחת לרישום אובייקט NativeAd עצמו. רישום התצוגות בדרך הזו מאפשר ל-SDK לטפל אוטומטית במשימות כמו:

  • הקלטת קליקים
  • תיעוד חשיפות כשהפיקסל הראשון גלוי במסך
  • הצגת שכבת-העל AdChoices

שכבת-העל של AdChoices

שכבת-על של AdChoices מתווספת לכל צפייה במודעה על ידי ה-SDK. כדי להוסיף את הלוגו של AdChoices באופן אוטומטי, השאירו מקום בפינה המועדפת של תצוגת המודעות המותאמות. בנוסף, חשוב לראות בקלות את שכבת-העל AdChoices, לכן חשוב לבחור צבעי רקע ותמונות בהתאם. מידע נוסף על המראה והפונקציונליות של שכבת-העל זמין במאמר תיאורי השדות של מודעות מותאמות.

סימון למודעה

צריך להציג ייחוס של מודעה כדי לציין שהצפייה היא פרסומת. מידע נוסף זמין בהנחיות המדיניות שלנו.

קוד לדוגמה

כדי להציג מודעה מותאמת:

  1. יוצרים מופע של הכיתה NativeAdView.
  2. לכל נכס שיצורף למודעה:

    1. מאכלסים את תצוגת הנכס באמצעות הנכס באובייקט המודעה.
    2. רושמים את תצוגת הנכס בכיתה NativeAdView.
  3. צריך לרשום את הערך MediaView אם הפריסה של המודעה המותאמת כוללת נכס מדיה גדול.

  4. רישום אובייקט המודעה במחלקה NativeAdView.

זוהי דוגמה לפונקציה שמוצגת בה NativeAd:

Java

private void displayNativeAd(ViewGroup parent, NativeAd ad) {

  // Inflate a layout and add it to the parent ViewGroup.
  LayoutInflater inflater = (LayoutInflater) parent.getContext()
          .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  NativeAdView adView = (NativeAdView) inflater
          .inflate(R.layout.ad_layout_file, parent);

  // Locate the view that will hold the headline, set its text, and call the
  // NativeAdView's setHeadlineView method to register it.
  TextView headlineView = adView.findViewById<TextView>(R.id.ad_headline);
  headlineView.setText(ad.getHeadline());
  adView.setHeadlineView(headlineView);

  // Repeat the process for the other assets in the NativeAd
  // using additional view objects (Buttons, ImageViews, etc).

  // If the app is using a MediaView, it should be
  // instantiated and passed to setMediaView. This view is a little different
  // in that the asset is populated automatically, so there's one less step.
  MediaView mediaView = (MediaView) adView.findViewById(R.id.ad_media);
  adView.setMediaView(mediaView);

  // Call the NativeAdView's setNativeAd method to register the
  // NativeAdObject.
  adView.setNativeAd(ad);

  // Ensure that the parent view doesn't already contain an ad view.
  parent.removeAllViews();

  // Place the AdView into the parent.
  parent.addView(adView);
}

Kotlin

fun displayNativeAd(parent: ViewGroup, ad: NativeAd) {

  // Inflate a layout and add it to the parent ViewGroup.
  val inflater = parent.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE)
          as LayoutInflater
  val adView = inflater.inflate(R.layout.ad_layout_file, parent) as NativeAdView

  // Locate the view that will hold the headline, set its text, and use the
  // NativeAdView's headlineView property to register it.
  val headlineView = adView.findViewById<TextView>(R.id.ad_headline)
  headlineView.text = ad.headline
  adView.headlineView = headlineView

  // Repeat the process for the other assets in the NativeAd using
  // additional view objects (Buttons, ImageViews, etc).

  val mediaView = adView.findViewById<MediaView>(R.id.ad_media)
  adView.mediaView = mediaView

  // Call the NativeAdView's setNativeAd method to register the
  // NativeAdObject.
  adView.setNativeAd(ad)

  // Ensure that the parent view doesn't already contain an ad view.
  parent.removeAllViews()

  // Place the AdView into the parent.
  parent.addView(adView)
}

אלה המשימות הנפרדות:

  1. הגדלת הפריסה

    Java

    LayoutInflater inflater = (LayoutInflater) parent.getContext()
            .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    NativeAdView adView = (NativeAdView) inflater
            .inflate(R.layout.ad_layout_file, parent);
    

    Kotlin

    val inflater = parent.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE)
            as LayoutInflater
    val adView = inflater.inflate(R.layout.ad_layout_file, parent) as NativeAdView
    

    הקוד הזה מנפח פריסה של XML שמכילה תצוגות להצגת מודעה רגילה, ולאחר מכן מאתר הפניה ל-NativeAdView. שימו לב שאפשר גם לעשות שימוש חוזר ב-NativeAdView קיים אם יש כזה בחלק או בפעילות, או אפילו ליצור מכונה באופן דינמי בלי להשתמש בקובץ פריסה.

  2. אכלוס ורישום של תצוגות הנכסים

    קוד לדוגמה שמאתר את התצוגה שמשמשת להצגת הכותרת, מגדיר את הטקסט שלה באמצעות נכס המחרוזת שסופק על ידי אובייקט המודעה ומרשם אותו באובייקט NativeAdView:

    Java

    TextView headlineView = adView.findViewById<TextView>(R.id.ad_headline);
    headlineView.setText(ad.getHeadline());
    adView.setHeadlineView(headlineView);
    

    Kotlin

    val headlineView = adView.findViewById<TextView>(R.id.ad_headline)
    headlineView.text = ad.headline
    adView.headlineView = headlineView
    

    צריך לחזור על התהליך הזה של איתור התצוגה, הגדרת הערך שלה והרשמה שלה ל-class של תצוגת המודעה לכל אחד מהנכסים שסופקו על ידי אובייקט המודעה המובנית שהאפליקציה תציג.

  3. טיפול בקליקים

    אין להטמיע פונקציות טיפול בהקשות בהתאמה אישית בתצוגות מעל או בתוך תצוגת המודעה המובנית. המערכת מטפלת בלחיצות על נכסי תצוגת המודעה באמצעות ה-SDK, כל עוד אתם מאכלסים ומרשמים בצורה נכונה את תצוגות הנכסים, כפי שמתואר בקטע הקודם.

    כדי להאזין לקליק, מטמיעים את פונקציית ה-call back של הקליק ב-Google Mobile Ads SDK:

    Java

    AdLoader adLoader = new AdLoader.Builder(context, "ca-app-pub-3940256099942544/2247696110")
        // ...
        .withAdListener(new AdListener() {
            @Override
            public void onAdFailedToLoad(LoadAdError adError) {
                // Handle the failure by logging.
            }
            @Override
            public void onAdClicked() {
                // Log the click event or other custom behavior.
            }
        })
        .build();
    

    Kotlin

    val adLoader = AdLoader.Builder(this, "ca-app-pub-3940256099942544/2247696110")
        // ...
        .withAdListener(object : AdListener() {
            override fun onAdFailedToLoad(adError: LoadAdError) {
                // Handle the failure.
            }
            override fun onAdClicked() {
                // Log the click event or other custom behavior.
            }
        })
        .build()
    
  4. רישום ה-MediaView

    אם רוצים לכלול נכס תמונה ראשי בפריסה של המודעה המותאמת, צריך להשתמש בנכס MediaView במקום בנכס ImageView.

    MediaView הוא View מיוחד שמיועד להצגת נכס המדיה הראשי, בין אם מדובר בסרטון ובין אם בתמונה.

    אפשר להגדיר את MediaView בפריסה של XML או ליצור אותו באופן דינמי. צריך למקם אותו בהיררכיית התצוגה של NativeAdView, בדיוק כמו כל תצוגה אחרת של נכס. אפליקציות שמשתמשות ב-MediaView חייבות לרשום אותו ב-NativeAdView:

    Java

     // Populate and register the media asset view.
     nativeAdView.setMediaView(nativeAdBinding.adMedia);
    

    Kotlin

     // Populate and register the media asset view.
     nativeAdView.mediaView = nativeAdBinding.adMedia
    

    ImageScaleType

    לכיתה MediaView יש מאפיין ImageScaleType כשמוצגות תמונות. כדי לשנות את הגודל של תמונה ב-MediaView, צריך להגדיר את ה-ImageView.ScaleType התואם באמצעות ה-method setImageScaleType() של MediaView:

    Java

    mediaView.setImageScaleType(ImageView.ScaleType.CENTER_CROP);
    

    Kotlin

    mediaView.imageScaleType = ImageView.ScaleType.CENTER_CROP
    

    MediaContent

    הכיתה MediaContent מכילה את הנתונים שקשורים לתוכן המדיה של המודעה המוטמעת, שמוצג באמצעות הכיתה MediaView. כשהמאפיין MediaView mediaContent מוגדר עם מכונה של MediaContent:

    • אם נכס הווידאו זמין, הוא נשמר במטמון ומתחיל לפעול בתוך MediaView. כדי לבדוק אם נכס וידאו זמין, אפשר לבדוק את הערך של hasVideoContent().

    • אם המודעה לא מכילה נכס וידאו, המערכת מורידת את נכס ה-mainImage ומציבה אותו בתוך ה-MediaView במקום זאת.

    כברירת מחדל, mainImage הוא נכס התמונה הראשון שהורדתם. אם משתמשים ב-setReturnUrlsForImageAssets(true), הערך של mainImage הוא null וצריך להגדיר את המאפיין mainImage לתמונה שהורדתם באופן ידני. חשוב לזכור שהמערכת תשתמש בתמונה הזו רק אם אין נכס וידאו זמין.

  5. רישום אובייקט המודעה המותאמת

    בשלב האחרון הזה, אובייקט המודעה המותאמת נרשם בתצוגה שאחראית להצגתו.

    Java

    adView.setNativeAd(ad);
    

    Kotlin

    adView.setNativeAd(ad)
    

השמדת מודעה

כשמסיימים להציג את המודעה המותאמת, צריך למחוק אותה כדי שהיא תימחק כראוי.

Java

nativeAd.destroy();

Kotlin

nativeAd.destroy()

דוגמאות ב-GitHub

דוגמה להטמעה מלאה של מודעות מותאמות:

Java Kotlin

השלבים הבאים

כדאי לעיין בנושאים הבאים: