こんにちは、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>