Android的 - AD浏览报缺少必需的XML属性'adSize“属性、AD、Android、XML

2023-09-09 21:59:42 作者:语嗨

我的头现在几乎爆炸了,因为整个一天,我试图解决这个问题,从我的AdMob AD浏览。我得到的标题中提到的错误。我用Google搜索到3页,但一无所获。同样的错误,无论我做什么。这是我的XML文件:

My head almost exploded today because the entire day I tried to solve the problem with my AdView from AdMob. I'm getting an error mentioned in the title. I googled through 3 pages but nothing. Same error whatever I do. This is my XML file:

<?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>

我试过了应用关键字改为广告但问题仍然出现。

I tried to change the app keyword to ads but the problem still shows up.

另一件事是我真的想这同一单位-ID添加相同的广告,以多个活动。我说这正是code我的第一个活动的XML文件,一切工作正常,但在第二个活动是不工作的。感谢您的任何帮助。

Another thing is I actually want to add the same ad this the same unit-id to more than one activity. I added this exactly code to my first activity xml file, and everything works fine, but in the second activity it doesn't work at all. Thank you for any help.

推荐答案

修改

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

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

所有的文件似乎是指命名空间为处于 / lib目录/ 不是 /库/

和使用广告引用标记

<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="------------------------------" />
 
精彩推荐
图片推荐