0

嗨,已经有几个带有 AdView 的应用程序,但是这一次,我看不出有什么问题。当我在图形布局中查看 Eclipse 中的文件时,它以正确的大小和位置显示 AdView 占位符,但显示错误消息:无法初始化 AdView。必需的 XML 属性,缺少“adSize”。

请看一下我的代码,希望有人能看到我缺少的东西。

这是代码:

 <?xml version="1.0" encoding="utf-8"?>

<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

<LinearLayout 

    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/eifelturm"
    android:orientation="vertical" >

    <Button
        android:id="@+id/newbutton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:drawableLeft="@android:drawable/ic_menu_camera"
        android:text="@string/neuesFoto"
        android:gravity="fill"
        android:onClick="newPhoto"
        ></Button>

    <ListView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/main_listview">
    </ListView>
</LinearLayout>

<com.google.ads.AdView
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    app:adSize="BANNER"
    app:adUnitId="a1501d20d464e5d"
    app:loadAdOnCreate="true" />

</RelativeLayout>

为了访问其他通勤者上的文件,您必须对该文件具有正确的权限,因此共享文件夹似乎是个好主意。当然,如果您可以选择在远程计算机上定义某种服务器并将文件保存在他的根目录下,您将能够在没有特殊权限的情况下访问该文件(例如:在远程计算机上定义 SFTP 服务器,将文件保存在他的根,从用户计算机连接并获取文件)

4

1 回答 1

0

回复有点晚了,但我认为您的问题是您使用的是关键字app而不是adsAdView 定义。使用这种结构,它应该可以工作:

<com.google.ads.AdView
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    ads:adSize="BANNER"
    ads:adUnitId="a1501d20d464e5d"
    ads:loadAdOnCreate="true" />
于 2013-06-20T07:53:53.997 回答