我在CoordinatorLayout中面临自定义视图的以下问题:滚动RecyclerView时我需要折叠ViewGroup(f.e LinearLayout)。 ViewGroup充当RecyclerView的标题。使用以下代码时:
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent">
<LinearLayout
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|enterAlways"
android:orientation="vertical">
<!-- TextViews, etc. -->
</LinearLayout>
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.design.widget.CoordinatorLayout>
即使我尝试将具有适当值的属性app:layout_bevahiour添加到recycler的标题,它也无法正常工作。 RecyclerView将占据所有屏幕和标题(LinearLayout)不会显示。但是当我将LinearLayout更改为AppBarLayout时,一切都可以作为魅力,但标题被设置为操作栏。
对于任何ViewGroup(f.e LinearLayout),我有什么方法可以实现与AppBarLayout相同的行为?