在表面视图的Admob横幅

时间:2014-02-15 15:21:49

标签: android admob surfaceview

您是否有任何想法如何在表面视图中包含Admob横幅?我试了好几个小时,但没办法。

1 个答案:

答案 0 :(得分:0)

尝试这样的事情

Your_activity.xml

  < ?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                  xmlns:ads="http://schemas.android.com/apk/res-auto"
                  android:layout_width="match_parent"
                  android:layout_height="match_parent">

      <SurfaceView android:layout_width="match_parent"
                  android:layout_height="match_parent"/>

      <com.google.android.gms.ads.AdView android:id="@+id/adView"
                             android:layout_width="wrap_content"
                             android:layout_height="wrap_content"
                             ads:adUnitId="MY_AD_UNIT_ID"
                             android:layout_align_parrent_bottom="true"
                             ads:adSize="BANNER"/>
    </RelativeLayout >

或者从代码创建AdMob横幅。请点击https://developers.google.com/mobile-ads-sdk/docs/admob/fundamentals

了解更多信息