Android嵌套的scrollview锚定到AppBArLayout

时间:2016-11-08 10:04:58

标签: android android-coordinatorlayout android-appbarlayout android-nestedscrollview

所以,我有一个情况,我需要创建这样的东西:

enter image description here

其中白色背景视图是嵌套视图,包含所有元素的图像位于appbar中。现在,我设法创建它而NestedScrollView没有AppbarLayout,但我怎样才能实现这一目标,如何在NestedScrollView之上放置AppBarLayout而不失去任何功能?< / p>

1 个答案:

答案 0 :(得分:0)

为了完成这项工作,您需要做以下事情:

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

其中overlapTop是多少重叠,layout_behavior就是你需要的东西。希望它有所帮助。