RecyclerView嵌套NestedScrollView的滑动
时间: 2023-12-17 16:26:53 浏览: 155
Android-利用NestedScrolling机制把RecyclerView嵌套在NestedScrollView中实现嵌套滚动
3星 · 编辑精心推荐
在RecyclerView嵌套NestedScrollView时,会出现滑动冲突等问题,可以通过以下步骤解决:
1.在xml布局文件中,将NestedScrollView作为RecyclerView的父布局。
2.在代码中,设置recyclerView.setNestedScrollingEnabled(false)。
这样可以禁用RecyclerView的嵌套滑动,解决滑动冲突问题。
示例代码如下:
```xml
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</androidx.core.widget.NestedScrollView>
```
```java
RecyclerView recyclerView = findViewById(R.id.recyclerView);
recyclerView.setNestedScrollingEnabled(false);
```
阅读全文