RecyclerView嵌套在NestedScrollView中的注意事项

1.为了更好的适应NestedScrollView的特性,应该把布局文件的根布局设为CoordinatorLayout;

2.给NestedScrollView设置behavior,即 app:layout_behavior="@string/appbar_scrolling_view_behavior"

3.RecyclerView的高度设为match parent或者wrap content

这样就可以保证RecyclerView的内容可以显示出来,但是为了解决滑动不流畅的问题,还需要最后一步:

4. recyclerView.setNestedScrollingEnabled(false);

这样就可以实现了

你可能感兴趣的:(android)