Admob横幅与ScrollView重叠

时间:2013-09-05 14:38:43

标签: android android-layout

最近,我一直试图解决这个问题,但我无法做到这一点。根据用户的评价,我的adbanner在我的滚动视图中重叠了一些设备上的textview,尽管它在我的三星Galaxy Fit上运行完美。

这是我的完整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缺陷视频。

2 个答案:

答案 0 :(得分:2)

将此行添加到当前的LinearLayout xml:

     android:paddingBottom="50dp"   

答案 1 :(得分:-2)

在引用像素时使​​用dp,而不是px。在您的scrollView中,尝试layout_paddingBottom =“50dp”和layout_marginBottom =“50dp”,看看这是否是您想要的解决方案