我在Android应用上遇到AdMob问题。 我在Android开发人员指南中执行了所有步骤,但是当我点击活动时,不会显示任何广告。 这就是我实施的代码:
在AndroidManifest.xml中
<!-- Include required permissions for Google Mobile Ads to run-->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
....
//before activties...
<!--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" />
<!--Include the AdActivity configChanges and theme. -->
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
在我的活动布局中:
<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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.mat123.Home_activity" >
<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>
在我的Home_Activity.java
中//imported packages
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdView;
AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().addTestDevice("***My devide id***").build();
mAdView.loadAd(adRequest);
我的完整logcat已过滤&#34;广告&#34;:
05-17 12:00:18.758 6239-7566/com.example.mat123 D/dalvikvm﹕ DexOpt: --- BEGIN 'ads-341320604.jar' (bootstrap=0) ---
05-17 12:00:18.798 6239-6239/com.example.mat123 I/Ads﹕ CsiReporterFactory: CSI is not enabled. No CSI reporter created.
05-17 12:00:18.818 6239-6239/com.example.mat123 I/Ads﹕ Starting ad request.
05-17 12:00:18.868 6239-7566/com.example.mat123 D/dalvikvm﹕ DexOpt: --- END 'ads-341320604.jar' (success) ---
05-17 12:00:18.868 6239-7566/com.example.mat123 D/dalvikvm﹕ DEX prep '/data/data/com.example.mat123/cache/ads-341320604.jar': unzip in 0ms, rewrite 114ms
05-17 12:00:29.538 6239-7584/com.example.mat123 W/Ads﹕ There was a problem getting an ad response. ErrorCode: 0
05-17 12:00:29.548 6239-6239/com.example.mat123 I/dalvikvm﹕ Could not find method android.webkit.WebSettings.setMixedContentMode, referenced from method com.google.android.gms.ads.internal.u.h.<init>
05-17 12:00:29.658 6239-6239/com.example.mat123 W/Ads﹕ Failed to load ad: 0
在我的build.grandle中:
compile 'com.google.android.gms:play-services:7.0.0'
我已经搜索了很长时间,但我无法获得解决方案。 我将build.grandle中的编译设置更改为其他版本(如7.3.0或6.0.0)。 我已删除Google Repository并重新安装。 我更改了应用广告单元ID。 我刷新了这个项目。 我还做了另一个新项目,但我得到了同样的错误。 我在我的真实设备上测试我的应用程序(注3)。
没有其他的话要说,我不知道这是什么问题。
PS :(我已经在Eclipse上实现了所有内容(除了build.granle中的编译 - &gt;我导入了google play服务库))但是我得到了同样的错误。
感谢大家。
答案 0 :(得分:3)
问题是我的手机上安装了自定义ROM。 所以,代码中没有错误。
Thansk的帮助,并希望这对未来的某些人有所帮助。
答案 1 :(得分:2)
您的应用程序ID已被admob删除或阻止。您可以更改您的包名称,然后运行它的工作。
答案 2 :(得分:0)
您的发布商ID可能已被屏蔽。请参见此处的讨论:
https://groups.google.com/forum/#!topic/google-admob-ads-sdk/VUjq-cnmKlQ