2013-09-05 187 views
0

最近,我一直在試圖解決這個問題,但我無法做到這一點。根據用戶的審查,我的adbanner在某些設備上與我的scrollview中的textview重疊,儘管它適用於我的Samsung Galaxy Fit。Admob橫幅與ScrollView重疊

這裏是我完整的XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:orientation="vertical" >  
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" 
    android:background="#ffffff" >  
    <TextView 
     android:id="@+id/tx1" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:gravity="center_horizontal" 
     android:textSize="27dp" 
     android:layout_marginBottom="5px" />   
    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_marginBottom="50px" >  
     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:orientation="vertical">    
      <TextView 
       android:id="@+id/tx2" 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:gravity="center_horizontal" 
       android:textSize="25dp" 
       android:textColor="#000000" />    
      <TextView 
       android:id="@+id/tx3" 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:gravity="center_horizontal" 
       android:textSize="20dp" 
       android:textColor="#000000" 
       android:layout_marginTop="1px" /> 
       </LinearLayout>   
    </ScrollView>  
</LinearLayout> 
<com.google.ads.AdView xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads" 
    android:id="@+id/adView2" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" 
    android:layout_gravity="center_horizontal" 
    ads:adSize="BANNER" 
    ads:adUnitId="XXX" 
    ads:loadAdOnCreate="true" /> 
    </RelativeLayout> 

任何幫助,將不勝感激,以解決這個問題。 三星應用程序的認證團隊發給我this視頻的缺陷。

+0

有您考慮使用的LinearLayout而不是一個RelativeLayout? – Dyna

+0

是的,我已經試過了! :@Dyna – ashu

+1

你的第一個線性佈局的高度是「fill_parent」,所以通常它應該疊加廣告。對於scrollview,這意味着它應該佔用父容器的所有位置,而不會爲其他視圖留出空間。使用相對佈局的方向是沒有用的。 –

回答

-1

使用dp指的是像素,而不是px。在你的滾動視圖,同時嘗試layout_paddingBottom =「50dp」和layout_marginBottom =「50dp」,看看是否是你想要的解決方案

+1

layout_paddingBottom? – ashu

3

此行添加到您當前的LinearLayout的xml:

 android:paddingBottom="50dp"