com.google.ads.AdView konnte nicht instanziiert werden

Ich habe admob sdk verwendet und als externe jar.In xml hinzugefügt, die ich angegeben habe

<code><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
<TextView android:id="@+id/headerfield"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
<ListView android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

<com.google.ads.AdView 
    android:id="@+id/ad"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    ads:adSize="BANNER"    
    ads:adUnitId="Publisher Id"
    ads:loadAdOnCreate="true" />    
</LinearLayout>
</code>

Manifest

<code><activity android:name="com.google.ads.AdActivity"
    android:configChanges="keyboard|keyboardHidden|orientation"/>
</code>

Aber im grafischen Modus gibt es mir ein Fehlerprotokoll:

<code>com.google.ads.AdView - the following class could not be instantiated. 
</code>

Innerhalb des Programms wird es angezeigt

Sie müssen AdActivity in AndroidManifest.xml mit configChanges deklarieren.

Antworten auf die Frage(3)

Ihre Antwort auf die Frage