java - 获得广告响应。错误代码 : 0

标签 java android admob

这是我第一次设置和编写 Android 应用程序,也是我第一次设置广告,我已经用谷歌搜索和测试了近 2 天,但我似乎仍然无法让广告出现,它仍然给我错误“获取广告响应时出现问题。错误代码:0”。我已按照 here 上的指南进行操作以下是我的以下内容,请帮忙:(

MainActivity.java

package com.example.lechoonh.admob;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;

import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdView;


public class MainActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    AdView mAdView = (AdView) findViewById(R.id.adView);
    AdRequest adRequest = new AdRequest.Builder()
    .addTestDevice("DAE102189E22517B3A0C8A79337B74A2")
    .build();
    mAdView.loadAd(adRequest);


}

构建.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion "21.1.2"

defaultConfig {
    applicationId "com.example.lechoonh.admob"
    minSdkVersion 9
    targetSdkVersion 22
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.google.android.gms:play-services:7.0.0'
}

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.lechoonh.admob" >

    <application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <meta-data android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name="com.google.android.gms.ads.AdActivity"
        android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
        android:theme="@android:style/Theme.Translucent" />
        />

</application>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

字符串.xml

<resources>
    <string name="app_name">Admob 2</string>

    <string name="hello_world">Hello world!</string>
    <string name="action_settings">Settings</string>
    <string name="banner_ad_unit_id">ca-app-pub-xxxxxxxxxxxxx/xxxxx</string>
</resources>

activity_main.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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">



<com.google.android.gms.ads.AdView
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    ads:adSize="BANNER"
    ads:adUnitId="@string/banner_ad_unit_id"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true">
</com.google.android.gms.ads.AdView>

Picture

最佳答案

好吧,事实证明我应该更新依赖项

com.google.android.gms:播放服务:7.0.0

到 com.google.android.gms:play-services:7.3.0

现在广告正确显示

关于java - 获得广告响应。错误代码 : 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30260547/

相关文章:

Java Spring rest 返回未经授权的 json

java - 如何在没有证书的情况下连接到 https 网络服务?

java - setOnItemClickListener 不适用于自定义 TextView ListView 适配器

android - Admob 插页式广告在 Nexus 5 (Android 4.4.2) 上不可点击

java - Weblogic服务器尝试抑制当前工作线程并开始处理新请求

java - JUnit 测试在 setUp 中崩溃

java - 我正在尝试使用 Socket 连接到 URL,但只能通过提供 IP 地址(Java android)进行连接

android - 如何避免在我的 Android 应用程序上不必要地重新加载 Google Ads

android - 哪个 ID 用于 Android 应用中介 ID 或发布商 ID

java - PowerMock、mockito、验证静态方法