Currently I have the following layout in my Activity:
<CoordinatorLayout>
<AppBarLayout>
<Toolbar
layout_scrollFlags="scroll|enterAlways|snap">
<NestedScrollView>
layout_behavior="@string/appbar_scrolling_view_behavior">
<RelativeLayout>
<ProgressBar/>
<FrameLayout
id=fragment-container>
and this for my Fragment:
<LinearLayout>
<CardView
layout_scrollFlags="scroll|enterAlways|snap">
<RecyclerView>
When scrolling my recyclerView, the toolbar moves following the scroll flags defined in the xml, but the cardview doesn't. How to implement the same behavior to the cardview?