设置adMob时出现问题

时间:2011-09-20 20:06:38

标签: android admob

我有一个非常基本的Android活动,只有以下xml代码,以及在我的清单中访问互联网/网络状态的权限,但我仍然收到以下错误:

09-20 15:58:00.896:WARN / Ads(748):XML布局中的adSize参数无效:-1。违反了BANNER。 09-20 15:58:00.906:错误/广告(748):AdView缺少必需的XML属性adUnitId。

继承人我的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:orientation="vertical"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent">
  <com.google.ads.AdView android:id="@+id/adView"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     ads:adUnitId="a14e7524ca3db03"
                     ads:adSize="BANNER"
                     ads:loadAdOnCreate="true"/>

1 个答案:

答案 0 :(得分:1)

前一段时间看看我的问题:AdMob: Missing required XML attribute adUnitID

我发现正确的行应该是:

  

的xmlns:广告= “http://schemas.android.com/apk/res/com.niek.runningapp”

请为您的应用尝试类似的内容。