坚果壳中的问题:
如何将滚动行为附加到不是CoordinatorLayout的直接子项的RecyclerView?
<CoordinatorLayout id="root">
<AppBarLayout>
<Toolbar/>
</AppBarLayout>
<FrameLayout id ="fragment_container">
<RecyclerView id="list" behavior="..."/>
</FrameLayout>
</CoordinatorLayout>
为什么我要这个?
我有一个活动,它包含工具栏,并有一个内容的主插槽,如“Foo”列表。该列表封装在Fragment中,其中包含带有RecyclerView的FrameLayout,空状态TextView和ProgressView。问题是我的RecyclerView中的第一行是在工具栏后面。
答案 0 :(得分:0)
尝试用NestedScrollView替换你的FrameLayout
<android.support.v4.widget.NestedScrollView
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
或将其作为FrameLayout的父视图
它适合我