AdMob未在webview中显示

时间:2013-11-18 10:05:35

标签: android webview android-webview admob

我正在尝试在我的网页浏览中添加AdMob,但没有效果良好..在我的main.xml中我写了这个:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center"
    android:orientation="vertical" >

    <WebView
        android:id="@+id/webview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         />
    <com.google.ads.AdView android:id="@+id/ad"
                           android:layout_width="wrap_content"
                           android:layout_height="wrap_content"
                           ads:adSize="BANNER"
                           ads:adUnitId="1234567890"
                           ads:loadAdOnCreate="true"/>
</LinearLayout>

并在mainifest中添加:

<activity android:name="com.google.ads.AdActivity"
              android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>

当我运行应用程序时,没有显示的横幅和logcat说:onFailedToReceiveAd(Invalid Ad request.)我认为问题是ID,但我无法理解我必须写的ID! “AdMob控制台”中的ID仅包含数字,而不是a14f3ed10a5e4eb

编辑: 我试着写:

ca-app-pub-****************/**********

其中*是数字。横幅出现但在几秒后消失..

1 个答案:

答案 0 :(得分:0)

您应该使用的Admob AdUnitId应该如下所示:

ca-app-pub-****************/**********

所以你走在了正确的轨道上。

你会得到

onFailedToReceiveAd(Invalid Ad request.)

当没有广告可供展示时。