0

我有一个问题CollapsingToolbarLayout。我不想滚动NestedScrollView到最后,因为如果内容(在我的情况下为文本)很短,它会留下很多空白。以下是截图:

在此处输入图像描述

和:

在此处输入图像描述

这是 XML:

<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:id="@+id/coordinator"
   >

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="@dimen/app_bar_description"
        >



        <android.support.design.widget.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll"
            >

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fitsSystemWindows="true"
                app:layout_collapseMode="parallax">

             <android.support.v4.view.ViewPager
                    android:id="@+id/image_pager"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_above="@+id/dots_holder" />
                <LinearLayout
                    android:orientation="horizontal"
                    android:layout_width="match_parent"
                    android:layout_height="15dp"
                    android:id="@+id/dots_holder"
                    android:paddingTop="2dp"
                    android:paddingBottom="2dp"
                    android:gravity="center"
                    android:layout_alignParentBottom="true"
                    android:visibility="gone" />

            </RelativeLayout>


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



    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:padding="8dp"
        android:id="@+id/nested_scrollView">

      <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="TEXT"
                android:id="@+id/name"
                android:textSize="@dimen/abc_text_size_headline_material"
                android:textColor="@color/abc_primary_text_material_light" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="TEXT"
                android:id="@+id/othernames"
                android:layout_below="@+id/name"
                android:textSize="@dimen/abc_text_size_subhead_material"
                android:textColor="@color/secondary_text_default_material_light" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="first"
                android:id="@+id/season_head"
                android:layout_alignParentBottom="false"
                android:layout_alignParentLeft="false"
                android:layout_below="@+id/othernames"
                android:layout_marginTop="12dp"
                android:textSize="@dimen/abc_text_size_subhead_material"
                android:textColor="@color/abc_primary_text_material_light" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="second"
                android:id="@+id/places_head"
                android:layout_marginTop="12dp"
                android:textSize="@dimen/abc_text_size_subhead_material"
                android:textColor="@color/abc_primary_text_material_light"
                android:layout_below="@+id/season" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="TEXT"
                android:id="@+id/season"
                android:layout_below="@+id/season_head"
                android:layout_marginTop="@dimen/desc_clauses_margin"
                android:textSize="@dimen/abc_text_size_body_1_material"
                android:textIsSelectable="true" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="TEXT"
                android:id="@+id/places"
                android:layout_below="@+id/places_head"
                android:textSize="@dimen/abc_text_size_body_1_material"
                android:layout_marginTop="@dimen/desc_clauses_margin" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="third"
                android:id="@+id/description_head"
                android:textSize="@dimen/abc_text_size_subhead_material"
                android:textColor="@color/abc_primary_text_material_light"
                android:layout_below="@+id/places"
                android:layout_marginTop="12dp" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="TEXT"
                android:id="@+id/description"
                android:layout_below="@+id/description_head"
                android:textSize="@dimen/abc_text_size_body_1_material"
                android:layout_marginTop="@dimen/desc_clauses_margin" />
    </android.support.v4.widget.NestedScrollView>

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

我想在内容结束时停止滚动。

4

1 回答 1

2

回答这个问题有点晚了,但我认为还有其他开发人员有类似的问题,因此现在做出回应。要了解为什么会发生这种情况,我们必须了解这些核心概念:

  • CoordinatorLayout实际上是一个FrameLayout带有一些自定义更改以给出我们所看到的行为。所以当我们使用AppBarLayoutNestedScrollView作为孩子时,它们本质上是相互重叠的。CoordinatorLayout 获取高度AppBarLayout并确保 NestedScroll 视图显示在 AppBarLayout 下方(如果是正常的 FrameLayout,它将根据顺序显示在 AppBar 下方或上方)。这就是为什么我们看到的屏幕就像上面的截图 1。

  • 但为什么是空白?当您向上滚动时,CoordinatorLayout 正在向上滚动 AppBarLayout 并折叠,CollapsingToolBar但也会向上移动NestedScrollView以提供滚动行为。当NestedScrollView到达顶部时,现在屏幕有整个视图来显示内容。由于我们的NestedScrollViewhas wrap_content,它实际上只占用显示上下文(TextView)所需的空间,其余区域是应用程序/活动的默认背景。我们的活动和NestedScrollView背景是相同的,因此它给人的感觉是你NestedScrollView占据了整个空间,但实际上并非如此。尝试设置不同的颜色背景NestedScrollView,它会更有意义。

  • 如果您真的想实现上述行为,一种方法是避免NestedScrollView并拉出RelativeLayout并使其成为外部 CoordinatorLayout 的子项,它将显示预期的结果。这样做的副作用是您不会在TextView内容上获得滚动效果,但工具栏会起作用。如果你想要滚动行为,你必须使用 NestedScrollView ,即使没有它,它的行为也会相同,Coordinator因为没有太多可以覆盖整个屏幕并且应该看到空白区域。希望这可以帮助。

于 2018-10-04T21:00:04.607 回答