解决方案 »

  1.   

    简洁的说,就是scrollview中的文字太多,滚动滚动条时,把下面应该显示的布局给覆盖了.求大神指导.新手跪谢
      

  2.   

    不得不说楼主这个布局写的太差了,很多没必要的父控件嵌套,性能很低。
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/linearlayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent
        android:orientation="vertical"
        >
        <TextView
            android:text="了解牛成功"
            android:gravity="center"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="20sp"
            android:background="@color/background1"
            />
        <LinearLayout 
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            android:orientation="vertical"
            >
      <ScrollView 
    android:id="@+id/scrollView1" 
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:layout_weight="1"

    android:fadingEdge="vertical" 
    android:scrollbars="vertical">
    <LinearLayout            
      android:layout_width="match_parent" 
          android:layout_height="wrap_content"            
          android:background="@android:color/darker_gray"            
          android:orientation="vertical" >               
            <TextView 
    android:id="@+id/text_guanyu_nuodun" 
    android:layout_width="fill_parent" 
    android:paddingLeft="10dip" 
    android:textColor="#8F683A" 
    android:textSize="18dip" 
    android:layout_height="1000dip"/> 
         </LinearLayout> 
      </ScrollView> 
      <LinearLayout 
           android:layout_width="match_parent"
           android:layout_height="wrap_content"
           android:id="@+id/bottom_linearlayout"       android:background="@color/background1"
           android:orientation="vertical"
           >
                <TextView
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:text="版权所有:牛成功个人所有"
                 android:gravity="center_horizontal"
                 /> 
                 <TextView
                 android:layout_width="match_parent"
                 android:layout_height="wrap_content"
                 android:text="网站:www.0536822.cn"
                 android:gravity="center_horizontal"
                 /> 
          </LinearLayout>
       </LinearLayout>
     </LinearLayout>