ScrollView不向下滚动

时间:2018-05-21 15:30:49

标签: android android-scrollview

我知道这是一个非常基本的问题。我仍然无法解决它。我在标题视图下方有一个Scrollview,Scrollview根本没有滚动。我将在下面发布我的代码。请看看。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/page_background"
android:clickable="true"
android:orientation="vertical"
>

 <RelativeLayout
   android:layout_width="match_parent"
   android:layout_height="?android:attr/actionBarSize"
   android:gravity="center_vertical"
   android:layout_weight="0"
   android:clickable="true"
   android:background="@color/button_colour">
 </RelativeLayout>

 <ScrollView
  android:layout_width="match_parent"
  android:layout_height="0dp"
  android:layout_weight="1"
  android:fillViewport="true"
 >
 <LinearLayout
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:weightSum="14"
   android:padding="2dp"
   android:clickable="true"
   android:orientation="vertical">
 </LinearLayout>

 </ScrollView>

 </LinearLayout>

1 个答案:

答案 0 :(得分:1)

在这种情况下没有使用android:layout_weight。而且您也不必在android:layout_weight内使用ScrollView。如果您使用Views将包裹在ViewGroup内并且不会滚动。 fill_parent已被删除使用match_parent

使用以下布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="?android:attr/actionBarSize"
    android:background="@color/colorPrimary"
    android:clickable="true"
    android:gravity="center_vertical">


</RelativeLayout>

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/colorAccent"
        android:orientation="vertical"
        android:padding="2dp"
        >
        <!--Other views goes here without weight-->

    </LinearLayout>
</ScrollView>
</LinearLayout>