我在设备中测试我的应用程序它显示调试logcat中的错误这是什么错误以及如何解决这个问题?
错误是
There was a problem getting an ad response. ErrorCode: 1
我的xml代码是
<RelativeLayout 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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/accent_material_light"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
>
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id">
</com.google.android.gms.ads.AdView>
我展示广告的代码是
AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);
在清单文件中我正在添加。代码工作正常,但广告没有显示我正在我的设备上测试
<application
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<!--This meta-data tag is required to use Google Play Services.-->
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
答案 0 :(得分:25)
尝试使用广告单元ID。
您可能错误地使用了APP ID或PUBLISHER ID ..(就像我的错误一样)
示例广告单元ID(包含xxxxx / xxxxx)
ca-app-pub-9390048287444061/3221111032 - 更正
示例应用程序ID(包含xxxxx~xxxxx)
ca-app-pub-9390048287444061~1222077830 - 错误的
答案 1 :(得分:2)
通过添加除发布商ID以外的广告单元ID并通过AdRequest添加测试设备ID来解决该问题
答案 2 :(得分:1)
如你所说, 您已完成所有尝试,在清单以及 build.gradle 文件中完美地编写所有代码。 同样的问题对我来说。
所以在此之后我通过更正我的 ad-mob单元ID 解决了这个问题 它是用大写编写的。所以我把它修改为小写并且工作得很好。
这对我有用。希望这也能帮助别人!!。
答案 3 :(得分:0)
我遇到了同样的问题。
我认为错误代码1的原因有很多,但我的错误是adSize。我为NativeAdExpress设置了,但在XML中提供了错误的维度,MEDIUM_RECTANGLE适用于我的NativeAdExpress视图。
答案 4 :(得分:-2)
尝试将以下代码添加到您的gradle文件中。
compile 'com.google.android.gms:play-services-ads:8.1.0'