הצגת מודעה מותאמת לרשת המדיה
כשמודעה מותאמת נטענת, Google Mobile Ads SDK מפעיל את מאזין האירועים של פורמט המודעה המתאים. האחריות להצגת המודעה מוטלת על האפליקציה, אבל היא לא חייבת להציג אותה באופן מיידי. כדי להקל על הצגת פורמטים של מודעות שמוגדרים על ידי המערכת, ה-SDK מציע כמה משאבים שימושיים, כמו שמתואר בהמשך.
הגדרת הכיתה NativeAdView
מגדירים כיתת NativeAdView
. הכיתה הזו היא כיתה מסוג ViewGroup
והיא מאגר ברמה העליונה לכיתה מסוג NativeAdView
. כל תצוגת מודעה מותאמת מכילה נכסים של מודעות מותאמות, כמו רכיב התצוגה MediaView
או רכיב התצוגה Title
, שחייבים להיות צאצאים של האובייקט NativeAdView
.
פריסת XML
מוסיפים קובץ XML NativeAdView
לפרויקט:
<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>
Jetpack פיתוח נייטיב
כולל את המודול JetpackComposeDemo/compose-util
שכולל כלי עזר ליצירת NativeAdView
והנכסים שלו.
בעזרת המודול compose-util
, יוצרים NativeAdView
:
import com.google.android.gms.compose_util.NativeAdAttribution
import com.google.android.gms.compose_util.NativeAdView
@Composable
/** Display a native ad with a user defined template. */
fun DisplayNativeAdView(nativeAd: NativeAd) {
NativeAdView {
// Display the ad attribution.
NativeAdAttribution(text = context.getString("Ad"))
// Add remaining assets such as the image and media view.
}
}
טיפול במודעה מותאמת שנטענה
כשמודעה מותאמת נטענת, מטפלים באירוע הקריאה החוזרת, מרחיבים את התצוגה של המודעה המותאמת ומוסיפים אותה להיררכיית התצוגה:
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)
}
Jetpack פיתוח נייטיב
@Composable
/** Load and display a native ad. */
fun NativeScreen() {
var nativeAd by remember { mutableStateOf<NativeAd?>(null) }
val context = LocalContext.current
var isDisposed by remember { mutableStateOf(false) }
DisposableEffect(Unit) {
// Load the native ad when we launch this screen
loadNativeAd(
context = context,
onAdLoaded = { ad ->
// Handle the native ad being loaded.
if (!isDisposed) {
nativeAd = ad
} else {
// Destroy the native ad if loaded after the screen is disposed.
ad.destroy()
}
},
)
// Destroy the native ad to prevent memory leaks when we dispose of this screen.
onDispose {
isDisposed = true
nativeAd?.destroy()
nativeAd = null
}
}
// Display the native ad view with a user defined template.
nativeAd?.let { adValue -> DisplayNativeAdView(adValue) }
}
fun loadNativeAd(context: Context, onAdLoaded: (NativeAd) -> Unit) {
val adLoader =
AdLoader.Builder(context, NATIVE_AD_UNIT_ID)
.forNativeAd { nativeAd -> onAdLoaded(nativeAd) }
.withAdListener(
object : AdListener() {
override fun onAdFailedToLoad(error: LoadAdError) {
Log.e(TAG, "Native ad failed to load: ${error.message}")
}
override fun onAdLoaded() {
Log.d(TAG, "Native ad was loaded.")
}
override fun onAdImpression() {
Log.d(TAG, "Native ad recorded an impression.")
}
override fun onAdClicked() {
Log.d(TAG, "Native ad was clicked.")
}
}
)
.build()
adLoader.loadAd(AdRequest.Builder().build())
}
הערה: כל הנכסים של מודעה מותאמת מסוימת צריכים להיות מוצגים בתוך התג NativeAdView
layout. Google Mobile Ads SDK מנסה לרשום אזהרה ביומן כשנכסים של מודעות מותאמות מוצגים מחוץ לפריסת התצוגה של המודעה המותאמת.
בנוסף, מחלקות התצוגה של המודעות מספקות שיטות שמשמשות לרישום התצוגה שמשמשת לכל נכס בנפרד, ושיטה אחת לרישום האובייקט NativeAd
עצמו.
רישום התצוגות בצורה הזו מאפשר ל-SDK לטפל אוטומטית במשימות כמו:
- קליקים להקלטה
- תיעוד חשיפות כשהפיקסל הראשון גלוי במסך
- הצגת שכבת העל של AdChoices
שכבת-על של AdChoices
ה-SDK מוסיף שכבת-על של AdChoices לכל תצוגת מודעה. משאירים מקום בפינה המועדפת בתצוגת המודעה המקורית ללוגו AdChoices שמוכנס באופן אוטומטי. בנוסף, חשוב שיהיה קל לראות את שכבת-העל של AdChoices, לכן צריך לבחור בקפידה את צבעי הרקע והתמונות. מידע נוסף על המראה והתפקוד של שכבת העל זמין במאמר תיאורים של שדות במודעות מותאמות.
סימן למודעה
חובה להציג סימן למודעה כדי לציין שהצפייה היא במודעה. מידע נוסף זמין בהנחיות המדיניות שלנו.
קוד לדוגמה
כדי להציג מודעה מותאמת, צריך לבצע את השלבים הבאים:
- יוצרים מופע של המחלקה
NativeAdView
. לכל נכס שיצורף למודעה שרוצים להציג:
- מאכלסים את תצוגת הנכס בנכס באובייקט המודעה.
- רושמים את תצוגת הנכס באמצעות המחלקה
NativeAdView
.
אם פריסת המודעה המותאמת כוללת נכס מדיה גדול, צריך לרשום את
MediaView
רושמים את אובייקט המודעה בכיתה
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)
}
Jetpack פיתוח נייטיב
@Composable
/** Display a native ad with a user defined template. */
fun DisplayNativeAdView(nativeAd: NativeAd) {
val context = LocalContext.current
Box(modifier = Modifier.padding(8.dp).wrapContentHeight(Alignment.Top)) {
// Call the NativeAdView composable to display the native ad.
NativeAdView {
// Inside the NativeAdView composable, display the native ad assets.
Column(Modifier.align(Alignment.TopStart).wrapContentHeight(Alignment.Top)) {
// Display the ad attribution.
NativeAdAttribution(text = context.getString(R.string.attribution))
Row {
// If available, display the icon asset.
nativeAd.icon?.let { icon ->
NativeAdIconView(Modifier.padding(5.dp)) {
icon.drawable?.toBitmap()?.let { bitmap ->
Image(bitmap = bitmap.asImageBitmap(), "Icon")
}
}
}
Column {
// If available, display the headline asset.
nativeAd.headline?.let {
NativeAdHeadlineView {
Text(text = it, style = MaterialTheme.typography.headlineLarge)
}
}
// If available, display the star rating asset.
nativeAd.starRating?.let {
NativeAdStarRatingView {
Text(text = "Rated $it", style = MaterialTheme.typography.labelMedium)
}
}
}
}
// If available, display the body asset.
nativeAd.body?.let { NativeAdBodyView { Text(text = it) } }
// Display the media asset.
NativeAdMediaView(Modifier.fillMaxWidth().height(500.dp).fillMaxHeight())
Row(Modifier.align(Alignment.End).padding(5.dp)) {
// If available, display the price asset.
nativeAd.price?.let {
NativeAdPriceView(Modifier.padding(5.dp).align(Alignment.CenterVertically)) {
Text(text = it)
}
}
// If available, display the store asset.
nativeAd.store?.let {
NativeAdStoreView(Modifier.padding(5.dp).align(Alignment.CenterVertically)) {
Text(text = it)
}
}
// If available, display the call to action asset.
// Note: The Jetpack Compose button implements a click handler which overrides the native
// ad click handler, causing issues. Use the NativeAdButton which does not implement a
// click handler. To handle native ad clicks, use the NativeAd AdListener onAdClicked
// callback.
nativeAd.callToAction?.let { callToAction ->
NativeAdCallToActionView(Modifier.padding(5.dp)) { NativeAdButton(text = callToAction) }
}
}
}
}
}
}
אלה המשימות הנפרדות:
ניפוח הפריסה
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
קיים אם יש כזה ב-Fragment או בפעילות, או אפילו ליצור מופע באופן דינמי בלי להשתמש בקובץ פריסה.אכלוס ורישום של נתוני הצפיות בנכסים
בדוגמת הקוד הזו, המערכת מאתרת את התצוגה שמשמשת להצגת הכותרת, מגדירה את הטקסט שלה באמצעות נכס המחרוזת שסופק על ידי אובייקט המודעה ורושמת אותה באובייקט
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
צריך לחזור על התהליך הזה של איתור התצוגה, הגדרת הערך שלה ורישום שלה בכיתת התצוגה של המודעה עבור כל אחד מהנכסים שסופקו על ידי אובייקט המודעה המקורית שהאפליקציה תציג.
טיפול בקליקים
אל תטמיעו מטפלים מותאמים אישית של קליקים בתצוגות שמעל או בתוך תצוגת המודעה המקורית. ה-SDK מטפל בקליקים על נכסי מודעות מסוג צפייה במודעה, בתנאי שמאכלסים ומגדירים את הצפיות בנכסים בצורה נכונה, כמו שמוסבר בקטע הקודם.
כדי לעקוב אחרי קליקים, מטמיעים את הקוד הבא של פונקציית הקריאה החוזרת (callback) של 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()
רישום של 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
המתאים באמצעות השיטה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
לתמונה שהורדתם באופן ידני. שימו לב שהתמונה הזו תשמש רק אם לא יהיה נכס וידאו זמין.רישום אובייקט המודעה המותאמת
בשלב האחרון הזה, אובייקט המודעה המותאמת נרשם בתצוגה שאחראית להצגת המודעה.
Java
adView.setNativeAd(ad);
Kotlin
adView.setNativeAd(ad)
הסרת מודעה
אחרי שמציגים מודעה מותאמת, צריך להשמיד את המודעה. בדוגמה הבאה מוצגת השמדה של מודעה מקומית:
Java
nativeAd.destroy();
Kotlin
nativeAd.destroy()
דוגמאות ב-GitHub
דוגמה להטמעה מלאה של מודעות מותאמות:
השלבים הבאים
כדאי לעיין בנושאים הבאים: