2 Stimmen

Hinzufügen von Admob in ScrollView -> AdBanner verschwindet

Hallo Leute ich habe es bisher geschafft, Admob in ein normales lineares Layout zu implementieren. Nun habe ich eine zusätzliche scrollview und die adbanner verschwunden. Ich weiß nicht, was ich dagegen tun kann.

Es folgt der Code aus der .xml, wo ich die scrollview :

   <?xml version="1.0" encoding="utf-8"?>
   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@+id/linearLayout"
   android:orientation="vertical"
   android:layout_width="fill_parent" android:layout_height="match_parent">
   <ScrollView android:id="@+id/scrollView1" android:layout_height="wrap_content" android:layout_width="match_parent">
     <LinearLayout android:id="@+id/linearLayout1" android:layout_width="match_parent"   android:layout_height="match_parent" android:orientation="vertical">

     [whole bunch of layout elements whoch shouldn´t affect the adbanner]

     </LinearLayout>
   </ScrollView>    

In meinem linearen Layout, in dem das Werbebanner noch funktioniert, wurde die gesamte Bannerposition in der Hauptdatei activitiy.java festgelegt (mit Hilfe des Tutorials auf taiic.com)

    // Lookup R.layout.main
    LinearLayout layout = (LinearLayout)findViewById(R.id.linearLayout); 

    // Create the adView
    // Please replace MY_BANNER_UNIT_ID with your AdMob Publisher ID
    String pubID = "xxxxxxxxxxxxxxxxxx";
    AdView adView = new AdView(this, AdSize.BANNER, pubID);

    // Add the adView to it
    layout.addView(adView);

    // Initiate a generic request to load it with an ad
    AdRequest request = new AdRequest();
    request.setTesting(true);

    adView.loadAd(request);

Kann mir jemand sagen, was ich ändern oder welchen Code ich hinzufügen muss, wenn ich ein Admob-Banner in eine scrollview ?

bearbeiten:

Ich habe versucht, Folgendes hinzuzufügen

<com.admob.android.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
myapp:backgroundColor="#000000"
myapprimaryTextColor="#FFFFFF"
myapp:secondaryTextColor="#CCCCCC"
android:alignParentBottom="true"/>

zwischen den letzten beiden Zeilen in der .xml

  </LinearLayout>
     [here]
  </ScrollView>

aber dann bekomme ich den Fehler "error: Fehler beim Parsen von XML: ungebundenes Präfix"

Prost

CodeJaeger.com

CodeJaeger ist eine Gemeinschaft für Programmierer, die täglich Hilfe erhalten..
Wir haben viele Inhalte, und Sie können auch Ihre eigenen Fragen stellen oder die Fragen anderer Leute lösen.

Powered by:

X