Android - AdView缺少必需的XML属性'adSize'

时间:2013-11-22 19:46:27

标签: android admob

我的脑袋今天几乎爆炸,因为整整一天我都尝试使用AdMob的AdView解决问题。我收到标题中提到的错误。我用Google搜索了3页,但没有。无论我做什么同样的错误。这是我的XML文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FFF"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="0.48"
        android:src="@drawable/butters10" />

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="42dp" >

        <Button
            android:id="@+id/prev"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:background="@drawable/prev" />

        <Button
            android:id="@+id/next"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:background="@drawable/next" />
    </RelativeLayout>

    <com.google.ads.AdView
        xmlns:ads="http://schemas.android.com/apk/libs/com.google.ads"
        android:id="@+id/adView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        ads:loadAdOnCreate="true"
        app:adSize="BANNER"
        app:adUnitId="------------------------------" >
    </com.google.ads.AdView>

</LinearLayout>

我尝试将app关键字更改为ads,但问题仍然存在。

另一件事是我实际上想要将相同的单位ID添加到同一个广告到多个活动。我将这个确切的代码添加到我的第一个活动xml文件中,一切正常,但在第二个活动中它根本不起作用。感谢您的任何帮助。

5 个答案:

答案 0 :(得分:59)

要使其适用于Google Play服务,请使用:

  

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

在您的XML文件中。

答案 1 :(得分:21)

更改

xmlns:ads="http://schemas.android.com/apk/libs/com.google.ads"

xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"

所有文档似乎都将命名空间称为/lib/而不是/libs/

使用ads

引用标记
<com.google.ads.AdView
    xmlns:ads="http://schemas.android.com/apk/libs/com.google.ads"
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    ads:loadAdOnCreate="true"
    ads:adSize="BANNER"
    ads:adUnitId="------------------------------" />

答案 2 :(得分:6)

我的要求是能够动态传入广告单元ID,而不是在xml中指定它们。事实证明框架不喜欢这些的混合,因此我以编程方式100%创建我的广告:

public class AdMobBanner extends FrameLayout {

private AdView adView;

public AdMobBanner(Context context, AdParams params) {
    super(context);

    adView = new AdView(context);
    FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
    layoutParams.gravity = Gravity.CENTER;
    adView.setLayoutParams(layoutParams);
    adView.setAdSize(AdSize.BANNER);
    adView.setAdUnitId(params.getAdUnitId());
    addView(adView);
}

public void showAdvert(AdParams params) {
    AdRequest.Builder builder = new AdRequest.Builder();

    for (String id: params.getTestDevices()) {
        builder.addTestDevice(id);
    }
    adView.loadAd(builder.build());
}

@Override
public void pause() {
    adView.pause();
}

@Override
public void resume() {
    adView.resume();
}

}

AdParams类是我自己的类,您可以将它替换为您自己的类,或传入字符串,但一般解决方案将在此处发布。

答案 3 :(得分:3)

&#34; loadAdOnCreate&#34;和&#34; testDevices&#34; XML属性不再可用。 使您的广告与Google Play服务合作

这是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/res-auto"
          android:orientation="vertical"
          android:layout_width="match_parent"
          android:layout_height="match_parent">
<TextView android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:text="@string/hello"/>
<com.google.android.gms.ads.AdView android:id="@+id/adView"
                       android:layout_width="match_parent"
                       android:layout_height="wrap_content"
                       ads:adSize="BANNER"
                       ads:adUnitId="INSERT_YOUR_AD_UNIT_ID_HERE"/>
</LinearLayout>

这是你的java文件

package com.google.example.gms.ads.xml;

import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdView;

import android.app.Activity;
import android.os.Bundle;

/**
 * A simple {@link Activity} which embeds an AdView in its layout XML.
 */
public class BannerXMLSample extends Activity {

  private static final String TEST_DEVICE_ID = "INSERT_YOUR_TEST_DEVICE_ID_HERE";

  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    // The "loadAdOnCreate" and "testDevices" XML attributes no longer available.
    AdView adView = (AdView) this.findViewById(R.id.adView);
    AdRequest adRequest = new AdRequest.Builder()
        .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
        .addTestDevice(TEST_DEVICE_ID)
        .build();
    adView.loadAd(adRequest);
  }
}

请参阅此处的示例 https://github.com/googleads/googleads-mobile-android-examples/tree/master/admob/banner-xml

答案 4 :(得分:-1)

android:theme="@android:style/Theme.Translucent"

之后将meta-data添加到您的Android清单中

Screenshot