Admob 没有为我的应用显示广告。正在显示测试广告,但没有显示真实广告。
如果我的帐户被禁用,则应显示此错误。但我可以登录我的 admob 帐户。
我还在其他具有不同帐户的手机上进行了测试,也具有不同的连接性,但仍然没有用。
这是日志
W/Ads: Received error HTTP response code: 403
/myapp.test W/Ads: There was a problem getting an ad response. ErrorCode: 0
/myapp.test W/Ads: Failed to load ad: 0
---后来补充---
这是布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:orientation="vertical"
app:behavior_overlapTop="64dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
app:theme="@style/AppTheme"
tools:showIn="@layout/activity_main">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.CardView
android:id="@+id/baseView"
android:layout_width="match_parent"
android:layout_height="280dp"
android:padding="10dp">
</android.support.v7.widget.CardView>
<RelativeLayout
android:layout_marginTop="30dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.gms.ads.AdView xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_centerHorizontal="true"
android:layout_width="320dp"
android:layout_height="50dp"
ads:adSize="BANNER"
ads:adUnitId="@string/admain" />
</RelativeLayout>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</LinearLayout>
这就是我在主要活动中调用广告的方式
MobileAds.initialize(getApplicationContext(), getString(R.string.appid));
mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().addTestDevice(getResources().getString(R.string.test)).build();
mAdView.loadAd(adRequest);
这是毕业
compile 'com.google.firebase:firebase-ads:10.0.1'
}
apply plugin: 'com.google.gms.google-services'
---后来补充---
一旦广告展示。后来我的帐户被封锁了。一个月后它现在活跃了。我在阻止之前制作的应用程序没有显示广告。但是新应用程序显示广告没有任何问题..
我认为唯一可能的解决方案是将包名称更改为其他名称。它对我有用!