RecyclerView 嵌入 AppBarLayout 无法滑动
时间: 2023-05-19 08:06:30 浏览: 168
这个问题可能是由于布局层次结构的问题导致的。你可以尝试将 RecyclerView 放在一个 NestedScrollView 中,然后将 NestedScrollView 放在 AppBarLayout 中。这样就可以实现 RecyclerView 在 AppBarLayout 中的滑动了。你可以参考以下代码:
```
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
```
阅读全文