我正在尝试为我的Android应用添加横幅广告,但无法让它发挥作用。横幅在预览中可见,但在我的Genymotion设备上运行时则不可见。这是我的布局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.my.package.MapsActivity"
tools:layout="@android:layout/list_content"
android:orientation="vertical">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="450dip"
tools:context="com.example.my.package.MapsActivity"/>
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id"/>
</LinearLayout>
在活动文件中我有这段代码:
MobileAds.initialize(mContext, "ca-app-pub-xxxxxxxxxxxxxxxxx~xxxxxxxxxx");
AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);
它也不适用于测试广告。什么可能是错的?
汉克
答案 0 :(得分:1)
也许您在Genymotion中使用的gmail帐户与admob帐户相同。尝试更改Genymotion中的另一个gmail。
答案 1 :(得分:0)
我想说的是,无论何时创建横幅广告或插页式广告,都必须等待几个小时才能在移动设备屏幕上显示广告。