从WebView到来时,为什么scrollview在底部留有额外的空间?

时间:2019-10-14 07:09:29

标签: android android-studio scrollview

实际上我有一个ScrollView( NestedScrollView match_parent 宽度和高度,属性 android:fillViewport="true + android:isScrollContainer="true)作为我的布局的父级,并添加了 ConstraintLayout (宽度 match-parent >和身高 wrap-content )作为他的孩子,当我第一次进入该屏幕时,一切看起来都很不错,但是当我单击其中的视图将我重定向到网络视图并按返回按钮时,返回此屏幕,ScrollView太大-底部多余的空间。我该怎么解决?

我已经尝试了android:overScrollMode =“ never”,但是没有用。我没有背景图片引起这种情况。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView 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/nestedScrollview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    android:isScrollContainer="true"
    tools:scrollY="0px">


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



..................views...............


    </android.support.constraint.ConstraintLayout>
</android.support.v4.widget.NestedScrollView>

0 个答案:

没有答案