2011-11-22 61 views
0

我有以下代碼....我似乎無法讓廣告在我的滾動視圖外運行。我試圖去關注這個話題的其他問題。請協助。我的所有內容都顯示在我的內容之上。我希望廣告在我的滾動視圖外運行。Android的Admob佈局

我的代碼:

<?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:layout_width="fill_parent" 
    android:layout_height="fill_parent" > 


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


    <ScrollView 
     xmlns:android="http://schemas.android.com/apk/res/android" 
       android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:fillViewport="true" > 

     <LinearLayout 
      xmlns:android="http://schemas.android.com/apk/res/android" 
      android:id="@+id/layoutbottom" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:layout_alignParentBottom="true" 
      android:orientation="vertical" 
      android:padding="5dp" > 

      <!-- android:layout_height="456dp" --> 

      <TextView 
       android:id="@+id/txtPlaceName" 
       style="@style/HeaderText" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" /> 

      <TextView 
       android:id="@+id/txtAddress" 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" /> 

      <ImageView 
       android:id="@+id/img" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" /> 

      <TextView 
       android:id="@+id/txtStory" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" /> 

      <TextView 
       android:id="@+id/txtURL" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:autoLink="web" /> 
     </LinearLayout> 
    </ScrollView> 

</RelativeLayout> 

回答

0

嘗試在你的滾動型增加android:layout_alignParentTop="true"您的AdView和android:layout_below="@id/adView"

+0

這個伎倆!謝謝! –