Admob没有在webview中显示

时间:2012-02-17 22:49:54

标签: android layout webview 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="wrap_content"
    android:layout_height="match_parent"
    android:orientation="vertical" >

  <com.google.ads.AdView android:id="@+id/adView"
                         android:layout_width="fill_parent"
                         android:layout_height="wrap_content"
                         ads:adUnitId="a14f3ed10a5e4eb"
                         ads:adSize="BANNER"
                         ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
                         ads:loadAdOnCreate="true"/>
<WebView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
     />

</LinearLayout>

有什么建议吗?

2 个答案:

答案 0 :(得分:0)

您必须将特定ID提供给adMob。只需查看Google AdMob网站上的默认示例,然后按照该说明进行操作。

答案 1 :(得分:0)

通过Eclipse使用调试模式,并从developer.android.com启动和示例广告应用。在LogCat中使用Ctrl + F搜索“获取测试”,您将在那里看到ID。

或者查看此链接,详细说明如何: Get ad id how to