CoordinatorLayout のカスタム ビューで次の問題に直面しています。RecyclerView をスクロールするときに ViewGroup (fe 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 を適切な値でリサイクラーのヘッダーに追加しようとしても機能しません。RecyclerView はすべての画面を占有し、ヘッダー (LinearLayout) は表示されません。しかし、LinearLayout を AppBarLayout に変更すると、すべてがチャームとして機能しますが、ヘッダーはアクション バーとしてスタイル設定されます。
ViewGroup (fe LinearLayout) の AppBarLayout と同じ動作を実現する方法はありますか?