安卓接入谷歌原生广告(Google AdMob)

一、导入谷歌广告SDK流程(官方文档

1.项目级build.gradle中加入google(),如下:

allprojects {
    repositories {
        google()
    }
}

2.应用级build.gradle,在dependencies中引入implementation 'com.google.android.gms:play-services-ads:19.6.0',如下:

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'com.google.android.gms:play-services-ads:19.6.0'
}

3.修改AndroidManifest.xml文件
将在AdMob中注册的应用ID(可在 AdMob 界面中找到)以<meta-data>方式添加到AndroidManifest.xml中,如下:

<manifest>
    <application>
        <!-- Sample AdMob app ID: ca-app-pub-3940256099942544~3347511713 -->
        <meta-data
            android:name="com.google.android.gms.ads.APPLICATION_ID"
            android:value="ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy"/>
    </application>
</manifest>

!!!注:在实际应用中,需要将上述value对应的值替换为实际AdMob应用ID,若只是demo中,可以使用上述sample的应用ID。

4.初始化SDK
在application中调用如下方法初始化SDK

MobileAds.initialize(context, new OnInitializationCompleteListener() {
      @Override
      public void onInitializationComplete(InitializationStatus initializationStatus) {
        Log.e(TAG, "AdMob init rst:" + JSON.toJson(initializationStatus.getAdapterStatusMap()));
      }
});

二、谷歌广告实现

先上效果图,如下:


效果图

1.在xml布局中广告显示位置添加占位view,如下

<FrameLayout
    android:id="@+id/fl_adplaceholder"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="@dimen/dp_15" />

2.自定义广告显示样式,使用UnifiedNativeAdView类对应一个原生广告,用于展示该广告素材资源的视图(例如,展示屏幕截图素材资源的 ImageView),均应是UnifiedNativeAdView对象的子对象。ad_unified_img_body.xml布局如下:

<com.google.android.gms.ads.formats.UnifiedNativeAdView
      android:id="@+id/native_ad_view"
      android:layout_width="match_parent"
      android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:minHeight="@dimen/dp_73">

      <RelativeLayout
          android:layout_width="@dimen/dp_130"
          android:layout_height="@dimen/dp_73">
        <com.google.android.gms.ads.formats.MediaView
            android:id="@+id/ad_media"
            android:layout_width="@dimen/dp_130"
            android:layout_height="@dimen/dp_73"
            android:layout_gravity="center_horizontal" />

        <TextView
            android:id="@+id/ad_choices"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="@dimen/dp_12"
            android:textColor="#707070"
            android:background="@drawable/ad_mob_icon_bg"
            android:layout_marginTop="@dimen/dp_5"
            android:layout_marginEnd="@dimen/dp_5"
            android:layout_alignParentEnd="true"
            android:paddingStart="@dimen/dp_4"
            android:paddingEnd="@dimen/dp_4"
            android:text="@string/ad_google"/>
      </RelativeLayout>

      <LinearLayout
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:layout_marginStart="@dimen/dp_16"
          android:gravity="center_vertical"
          android:orientation="vertical">
        <TextView
            android:id="@+id/ad_headline"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textColor="#262D44"
            android:layout_marginTop="@dimen/dp_3"
            android:ellipsize="end"
            android:singleLine="true"
            android:text=""
            android:textSize="@dimen/dp_15"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/ad_body"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:maxLines="2"
            android:textColor="#818799"
            android:ellipsize="end"
            android:textSize="@dimen/dp_13" />
      </LinearLayout>
    </LinearLayout>
  </com.google.android.gms.ads.formats.UnifiedNativeAdView>

3.开始加载广告内容

/**
   * 加载广告
   * @param context cont
   * @param id 广告id
   * @param listener 监听
   */
public static void loadAd(Context context, String id, OnAdLoadListener listener) {
    if (!checkThread()) {
      return;
    }
    Log.e(TAG, "AdMob load ad " + id);
    AdLoader.Builder builder = new AdLoader.Builder(context, id);
    builder.forUnifiedNativeAd(new UnifiedNativeAd.OnUnifiedNativeAdLoadedListener() {
      @Override
      public void onUnifiedNativeAdLoaded(UnifiedNativeAd unifiedNativeAd) {
        //广告数据加载成功
        if (listener != null) {
          listener.onAdLoaded(unifiedNativeAd);
        }
      }
    });
    builder.withAdListener(new AdListener() {
      @Override
      public void onAdFailedToLoad(LoadAdError loadAdError) {
        String error =
            String.format("domain: %s, code: %d, message: %s, cause: %s", loadAdError.getDomain(),
                loadAdError.getCode(), loadAdError.getMessage(), loadAdError.getCause());
        Log.e(AdMob.TAG, error);
        if (listener != null) {
          listener.onAdFailedToLoad(loadAdError);
        }
      }
    });
    //设置广告的属性
    VideoOptions videoOptions = new VideoOptions.Builder().setStartMuted(true).build();
    NativeAdOptions adOptions = new NativeAdOptions.Builder().setVideoOptions(videoOptions)
        //.setAdChoicesPlacement(ADCHOICES_BOTTOM_RIGHT)//设置广告中自带的广告标识view的位置,不设置默认显示在右上角
        .build();
    builder.withNativeAdOptions(adOptions);

    AdLoader adLoader = builder.build();
    adLoader.loadAd(new AdRequest.Builder().build());
  }

4.广告数据加载成功后,使用UnifiedNativeAd对象填充自定义的广告视图view

AdMob.loadAd(getActivity(), "ca-app-pub-3940256099942544/2247696110",
            new AdMob.OnAdLoadListener() {
              @Override
              public void onAdLoaded(UnifiedNativeAd unifiedNativeAd) {
                if (getActivity() == null
                    || getActivity().isFinishing()
                    || getActivity().isDestroyed()) {
                  unifiedNativeAd.destroy();
                  return;
                }

                FrameLayout frameLayout = (FrameLayout) getActivity().getLayoutInflater()
                    .inflate(R.layout.ad_unified_img_body, null);
                View view = frameLayout.findViewById(R.id.view_bg);
                UnifiedNativeAdView adView =
                    (UnifiedNativeAdView) frameLayout.findViewById(R.id.native_ad_view);
                AdMob.populateUnifiedNativeAdViewForImgAndBody(unifiedNativeAd, adView);

                float aspectRatio = unifiedNativeAd.getMediaContent().getAspectRatio();
                FrameLayout.LayoutParams layoutParams =
                    (FrameLayout.LayoutParams) adView.getLayoutParams();
                if (layoutParams == null) {
                  layoutParams = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
                      ViewGroup.LayoutParams.WRAP_CONTENT);
                }
                layoutParams.height = ad.getResources().getDimensionPixelSize(R.dimen.dp_73);
                view.setVisibility(View.VISIBLE);
                ad.removeAllViews();
                ad.addView(frameLayout, layoutParams);
              }

              @Override
              public void onAdFailedToLoad(LoadAdError loadAdError) {

              }
            });

上述填充数据populateUnifiedNativeAdViewForImgAndBody()方法如下:

public static void populateUnifiedNativeAdViewForImgAndBody(UnifiedNativeAd nativeAd,
      UnifiedNativeAdView adView) {
    // Set the media view.
    adView.setHeadlineView(adView.findViewById(R.id.ad_headline));
    adView.setMediaView(adView.findViewById(R.id.ad_media));
    adView.setBodyView(adView.findViewById(R.id.ad_body));

    // The mediaContent are guaranteed to be in every UnifiedNativeAd.
    adView.getMediaView().setMediaContent(nativeAd.getMediaContent());
    adView.getMediaView().setImageScaleType(ImageView.ScaleType.CENTER_INSIDE);
    ((TextView) adView.getHeadlineView()).setText(nativeAd.getHeadline());

    // These assets aren't guaranteed to be in every UnifiedNativeAd, so it's important to
    // check before trying to display them.
    if (nativeAd.getBody() == null) {
      adView.getBodyView().setVisibility(View.INVISIBLE);
    } else {
      adView.getBodyView().setVisibility(View.VISIBLE);
      ((TextView) adView.getBodyView()).setText(nativeAd.getBody());
    }

    // This method tells the Google Mobile Ads SDK that you have finished populating your
    // native ad view with this native ad.
    adView.setNativeAd(nativeAd);

    // Get the video controller for the ad. One will always be provided, even if the ad doesn't
    // have a video asset.
    VideoController vc = nativeAd.getVideoController();

    // Updates the UI to say whether or not this ad has a video asset.
    if (vc.hasVideoContent()) {
      Log.e(TAG,
          String.format(Locale.getDefault(), "Video status: Ad contains a %.2f:1 video asset.",
              vc.getAspectRatio()));

      // Create a new VideoLifecycleCallbacks object and pass it to the VideoController. The
      // VideoController will call methods on this object when events occur in the video
      // lifecycle.
      vc.setVideoLifecycleCallbacks(new VideoController.VideoLifecycleCallbacks() {
        @Override
        public void onVideoEnd() {
          // Publishers should allow native ads to complete video playback before
          // refreshing or replacing them with another ad in the same UI location.
          Log.e(TAG, "Video status: Video playback has ended.");
          super.onVideoEnd();
        }
      });
    } else {
      Log.e(TAG, "Video status: Ad does not contain a video asset.");
    }
  }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容