为什么滚动视图继续在虚无中滚动?

时间:2017-08-02 06:35:55

标签: java android android-layout android-scrollview

在我的应用中,ConstraintLayout中有一个scrollView,但我遇到ConstrainLayout高度的问题,我的意思是如果我把高度设为0或者wrap_content等等像420dp一样保持不变,所以如果没有内容,滚动视图也会继续滚动ConstraintLayout

这是一个相关的截图:

enter image description here

更新完整的XML代码

XML CODE HERE我不得不把它上传到github,因为它有点长......

3 个答案:

答案 0 :(得分:1)

您正在为滚动视图提供静态高度,因为滚动视图滚动

滚动视图 android:layout_height="520dp"设为android:layout_height="wrap_content" android:layout_height="match_parent",如下所示

<ScrollView
android:id="@+id/scrollView2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:fillViewport="true"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="80dp"
>

答案 1 :(得分:0)

将您的scrollview高度宽度设置为match_parent,并将fillViewPort设置为true。

<ScrollView
   android:id="@+id/scrollView2"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:fillViewport="true"/>

答案 2 :(得分:-1)

我注意到两个问题。

  1. 您似乎忘了从滚动视图中删除以下内容

        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="1.0"
    
  2. 您将滚动视图的宽度设置为0,约束布局的高度也设置为0.将它们设置为wrap_content