为什么在添加imageView后我的ScrollView会被切断?

时间:2017-11-23 19:46:01

标签: android android-layout android-imageview android-scrollview android-constraintlayout

当我尝试以编程方式将imageView添加到scrollView时,底部图像被切断,我无法再向下滚动。

package main

import "./array"

fmt.Println(array.MaxSize)

这是它的java代码:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/VVV"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    >


    <android.support.constraint.ConstraintLayout
        android:id="@+id/testLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">


        <TextView
            android:id="@+id/text1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/large_text"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

        <ImageView
            android:id="@+id/testImg"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:src="@mipmap/ic_launcher"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="@id/text1" />


    </android.support.constraint.ConstraintLayout>
</ScrollView>

下面是scrollView底部发生的事情的图像,它不再向下滚动。

enter image description here

我试图删除fillViewport,并且我还尝试更改它以在约束布局中添加线性布局,以查看它是否存在约束布局的问题,但它似乎不起作用。

2 个答案:

答案 0 :(得分:0)

您应该尝试使用嵌套滚动视图作为根布局。

答案 1 :(得分:0)

在添加imageView后尝试调用scrollView.requestLayout()layout.requestLayout()