我正在努力在应用程序中添加一些广告,并且系统地面临着错误消息:缺少adSize参数。我的XML文件如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/Window"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".myApp">

<com.google.android.gms.ads.AdView
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:id="@+id/adView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    ads:adUnitId="4sdfgsd5gs4df5g5sd"
    ads:adSize="BANNER"
    ads:testDevices="TEST_EMULATOR,4sdfgsd5gs4df5g5sd"
    ads:loadAdOnCreate="true"/>

<FrameLayout
    android:id="@+id/Cont"
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="top" >

    <LinearLayout
        android:id="@+id/Controls"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:orientation="horizontal" >

        <mypackage.utils.myapp.view1
            android:id="@+id/title"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1">
        </mypackage.utils.myapp.view1>

        <ImageButton
            android:id="@+id/Lum"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:src="@drawable/my_drawable1"
            android:text="@string/Lum">
        </ImageButton>

        <ImageButton
            android:id="@+id/Photo"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:src="@drawable/my_drawable2"
            android:text="@string/Photo">
        </ImageButton>

    </LinearLayout>
</FrameLayout>



我已经阅读了此网站上发布的类似问题的答案,但到目前为止,没有任何阻止该错误消息被触发的信息。所有这些动作并没有改变任何东西:


使用xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"代替xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
`
使用xmlns:ads="xmlns:ads="http://schemas.android.com/apk/res/com.jms.AdmobExample"代替xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
`


我可以补充一点,我的项目中没有任何“ Attrs.xml”文件,但作为答案,它提醒您,新版AdMob不再是强制性的,这应该不成问题。

我的XML文件怎么了?

最佳答案

我不确定您的活动内容,但是就XML而言,您应该使用:

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


代替:

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


而且您的AdView应该如下所示:

<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="4df1657304086fd7"
ads:adSize="BANNER" />


如果这不起作用,则添加您的活动,以便我们确保您也正确输入了所有活动。另外,请确保您使用的是Google Play服务API。

编辑
将此添加到清单

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

关于java - 以XML声明AdView,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25346778/

10-13 06:08