AdMob:缺少必需的 XML 属性 adUnitID

发布于 2024-10-31 14:00:57 字数 1723 浏览 1 评论 0原文

我对广告很陌生,无法让它发挥作用。 我已按照 http:// /code.google.com/intl/nl-NL/mobile/ads/docs/android/banner_xml.html

这是我的 main.xml:

<TableLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="com.niek.runningapp"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:background="#FFFFFF"
    android:stretchColumns="1">
<!-- more stuff-->
    <TableRow
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <com.google.ads.AdView
            android:id="@+id/adView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            ads:adUnitId="a14da18492dd1f0"
            ads:adSize="BANNER" />
    </TableRow>
<!-- More stuff -->

这是我在 res/values 中的 attrs.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <declare-styleable name="com.google.ads.AdView">
      <attr name="adSize">
          <enum name="BANNER" value="1"/>
          <enum name="IAB_MRECT" value="2"/>
          <enum name="IAB_BANNER" value="3"/>
          <enum name="IAB_LEADERBOARD" value="4"/>
      </attr>
      <attr name="adUnitId" format="string"/>
  </declare-styleable>
</resources>

运行应用程序时出现以下错误:

XML 布局中的 adSize 参数无效:-1。默认为 BANNER

AdView 缺少必需的 XML 属性 adUnitId。

我做错了什么?

I'm new to the ad stuff, and I can't get it working.
I've done what's stated at http://code.google.com/intl/nl-NL/mobile/ads/docs/android/banner_xml.html.

This is my main.xml:

<TableLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="com.niek.runningapp"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:background="#FFFFFF"
    android:stretchColumns="1">
<!-- more stuff-->
    <TableRow
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <com.google.ads.AdView
            android:id="@+id/adView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            ads:adUnitId="a14da18492dd1f0"
            ads:adSize="BANNER" />
    </TableRow>
<!-- More stuff -->

This is my attrs.xml in res/values:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <declare-styleable name="com.google.ads.AdView">
      <attr name="adSize">
          <enum name="BANNER" value="1"/>
          <enum name="IAB_MRECT" value="2"/>
          <enum name="IAB_BANNER" value="3"/>
          <enum name="IAB_LEADERBOARD" value="4"/>
      </attr>
      <attr name="adUnitId" format="string"/>
  </declare-styleable>
</resources>

The following error occurs when I run the app:

Invalid adSize paramter in XML layout: -1. Defaulting to BANNER

AdView missing required XML attribute adUnitId.

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

橘亓 2024-11-07 14:00:57

任何仍然遇到困难的人都可以尝试 xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"

Anyone who still struggle with it may try xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads".

风吹短裙飘 2024-11-07 14:00:57

根据最新的 SDK,它应该如下:

xmlns:ads="http://schemas.android.com/apk/res-auto"

Per latest SDK , it should be following:

xmlns:ads="http://schemas.android.com/apk/res-auto"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文