我对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>
我想在内容结束时完全停止滚动。
答案 0 :(得分:1)
回答这个问题有点晚了,但是我认为还有其他开发者也有类似的问题,因此现在就回答它。要了解为什么会发生这种情况,我们必须了解以下核心概念:
CoordinatorLayout
实际上是一个FrameLayout
,具有一些自定义更改以提供我们所看到的行为。因此,当我们将AppBarLayout
和NestedScrollView
用作子代时,它们实际上是相互重叠的。 CoordinatorLayout获取AppBarLayout
的高度,并确保NestedScroll视图显示在AppBarLayout下方(如果它是正常的FrameLayout,则将根据顺序显示在AppBar的下方或上方)。这就是为什么我们看到上面的屏幕截图1的原因。
但是为什么要留空格?当您向上滚动时,CoordinatorLayout向上滚动AppBarLayout并折叠CollapsingToolBar
,但同时向上移动NestedScrollView
以提供滚动行为。当NestedScrollView
到达顶部时,屏幕现在可以显示整个内容。由于我们的NestedScrollView
具有wrap_content
,因此实际上仅占用显示上下文(TextView)所需的空间,其余区域是应用程序/活动默认背景。我们的活动和NestedScrollView
的背景是相同的,因此给人一种NestedScrollView
正在占用整个空间的感觉,但实际上却没有。尝试为NestedScrollView
设置不同的颜色背景,这样会更有意义。
如果您确实想要实现上述行为,一种方法是避免使用NestedScrollView
并将RelativeLayout
抽出,使其成为外部CoordinatorLayout的子代,它将显示预期的结果。这样做的副作用是您不会在TextView
内容上获得滚动效果,但是工具栏将起作用。如果要滚动行为,则必须使用NestedScrollView,即使没有Coordinator
,它的行为也一样,因为没有太多内容可以覆盖整个屏幕并且应该看到空白。希望这会有所帮助。