NestedScrollView不完整滚动

8
我正在使用NestedScrollView来实现类似于这个的效果。

enter image description here

更新

这是我的repo

我发现当手机转向横屏时,滚动条无法让我看到按钮或底部的灰色视图

这是我的mainlayout.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbarLayout"
        android:layout_width="match_parent"
        android:layout_height="256dp"
        android:fitsSystemWindows="true">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            app:expandedTitleTextAppearance="@style/Toolbar.TitleText"
            app:collapsedTitleTextAppearance="@style/Toolbar.TitleText"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginStart="48dp"
            app:expandedTitleMarginEnd="64dp">

            <ImageView
                android:id="@+id/iv_tipo"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@color/colorPrimary"
                android:fitsSystemWindows="true"
                android:layout_gravity="center"
                app:layout_collapseMode="parallax"
                app:srcCompat="@drawable/aviso_128dp"/>

            <!--<include layout="@layout/toolbar_pin" />-->
            <android.support.v7.widget.Toolbar
                android:id="@+id/myToolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
                app:layout_collapseMode="pin"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Dark" />

            <TextView
                android:id="@+id/tv_toolbar_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:visibility="gone"/>

        </android.support.design.widget.CollapsingToolbarLayout>


    </android.support.design.widget.AppBarLayout>

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <!-- A CardView that contains a TextView -->
            <android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
                android:id="@+id/card_view"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginLeft="20dp"
                android:layout_marginRight="20dp"
                android:layout_marginTop="10dp"
                card_view:cardCornerRadius="4dp">

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="vertical">

                    <include
                        android:id="@+id/field_nombre"
                        layout="@layout/actividad_field" />

                    <include layout="@layout/actividad_separator" />

                    <include
                        android:id="@+id/field_direccion"
                        layout="@layout/actividad_field" />

                    <include layout="@layout/actividad_separator" />

                    <include
                        android:id="@+id/field_direccion2"
                        layout="@layout/actividad_field" />

                    <include layout="@layout/actividad_separator" />

                    <include
                        android:id="@+id/field_localidad"
                        layout="@layout/actividad_field" />

                    <include layout="@layout/actividad_separator" />

                    <include
                        android:id="@+id/field_provincia"
                        layout="@layout/actividad_field" />

                    <include layout="@layout/actividad_separator" />

                    <include
                        android:id="@+id/field_telefono"
                        layout="@layout/actividad_field" />

                    <include layout="@layout/actividad_separator" />

                    <include
                        android:id="@+id/field_email"
                        layout="@layout/actividad_field" />

                    <include layout="@layout/actividad_separator" />

                    <include
                        android:id="@+id/field_descripcion"
                        layout="@layout/actividad_field" />


                </LinearLayout>
            </android.support.v7.widget.CardView>


            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginTop="10dp"
                android:orientation="horizontal">

                <Button
                    android:id="@+id/bt_productos"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Ver productos" />

                <Button
                    android:id="@+id/bt_finalizar"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Finalizar" />
            </LinearLayout>

            <View
                android:layout_width="match_parent"
                android:layout_height="20dp"
                android:background="@color/gray"/>
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>

actividad_separator.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <View
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="0dp"/>

    <View
        android:layout_width="0dp"
        android:layout_weight="8"
        android:layout_height="1dp"
        android:background="@color/divider"/>

    <View
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="0dp"/>

</LinearLayout>

以及 actividad_field.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:layout_marginBottom="10dp"
    android:orientation="horizontal">

    <View
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="0dp"/>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_weight="8"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <ImageView
            android:id="@+id/iv_field"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:srcCompat="@drawable/ic_person_primary_36dp" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:gravity="center">

            <TextView
                android:id="@+id/tv_clave"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:textSize="10sp"
                android:text="Clave" />

            <TextView
                android:id="@+id/tv_valor"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:textStyle="bold"
                android:text="Valor"/>
        </LinearLayout>
    </LinearLayout>

    <View
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="0dp"/>
</LinearLayout>

这是它的外观:

在此输入图片描述 在此输入图片描述

这是它的工作原理(因为我看不到底部的灰色条而导致滚动不完整):

在此输入图片描述


尝试在滚动条底部添加一些空间,我曾遇到类似的问题。 - user9025311
这就是为什么我添加了灰色条的原因。当我运行项目时,我看不到灰色条。 - Ricardo
实际上问题是什么?你想完全显示布局底部的按钮,对吗?这就是你要问的问题吗?请澄清。 - Reaz Murshed
@ReazMurshed 我写了 不完整的滚动,因为我看不到底部的灰色条。如果你运行这个项目(我的存储库在帖子中),你就可以看到滚动条没有显示所有的子视图。 - Ricardo
4个回答

1
NestedScrollView 中添加 android:paddingBottom="50dp"
<LinearLayout
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:paddingBottom="50dp"
     android:orientation="vertical">

0
在完成所有布局更改后,我在清单文件中的活动中添加了android:configChanges="orientation|screenSize",并在横屏模式下完美地工作了。
<activity android:name=".MainActivity"
        android:configChanges="orientation|screenSize">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>  



[![Landscape Image][1]][1]
[1]: https://istack.dev59.com/2LHpR.webp

如果您在纵向测试(不更改移动设备方向),灰色条仍然会丢失。 - Ricardo

0

我曾经遇到过类似的问题,当我将线性布局替换为约束布局并在滚动视图底部添加底部约束以及一些边距时,问题得到了解决。你可以尝试这样做。


我会考虑的。但是我不想现在处理ConstraintLayout。 - Ricardo
尝试将translationZ添加到整个布局中。 - Ashish Sharma
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:gravity="center" android:translationZ="10dp">只需添加最后一行并检查,如果不起作用,请尝试将其添加到底部视图,我想这可能会有所帮助。 - Ashish Sharma
很有趣,尝试在底部添加一个虚拟视图,如果没有,请在滚动视图中最下面的视图下方添加一个高度为2-3 dp的视图。 - Ashish Sharma

0
NestedScrollView中,你有一个垂直的LinearLayout。 你需要将其高度更改为wrap_content

我尝试过了,但仍然失败。今天我会尝试上传一个虚拟项目,以便清晰地展示这个问题。 - Ricardo

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接