Meine Anzeigen werden nicht angezeigt, ich denke, dass ich die Dokumentation korrekt befolgt habe, sie werden jedoch weiterhin nicht angezeigt. Das Programm ist im Grunde eine Webansicht und ich möchte, dass die Anzeige unten angezeigt wird.Admob-Anzeigen werden nicht angezeigt - Android
Heres mein Layout-Datei:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/man.utd.headlines"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<com.admob.android.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
myapp:backgroundColor="#000000"
myapp:primaryTextColor="#FFFFFF"
myapp:secondaryTextColor="#CCCCCC" />
</LinearLayout>
Irgendwelche Ideen?
EDIT: Das ist, was ich habe jetzt aber es scheint noch nicht ganz richtig zu sein:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/man.utd.headlines"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<com.admob.android.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
myapp:backgroundColor="#000000"
myapp:primaryTextColor="#FFFFFF"
myapp:secondaryTextColor="#CCCCCC" />
<WebView
android:id="@+id/webview"
android:layout_above="@id/ad"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</RelativeLayout>
es sieht Ihr Layout nicht korrekt ist. Ihr Webview nimmt den ganzen Bildschirm ein. versuche, webview und adview zu wechseln und ändere die Höhe der adview auf wrap_content anstelle von fill_parent. – bhups
ein Fehler in 'Admob' kann sein! –