Android中NestedScrollView中嵌套RecyclerView的注意事项

1.解决滑动冲突

   recyclerCondition.setNestedScrollingEnabled(false);

2.解决recyclerView一开始不能置顶

在nestedScrollView里面的直接子布局设置
    android:focusable="true"
    android:focusableInTouchMode="true"

发布了14 篇原创文章 · 获赞 16 · 访问量 477

猜你喜欢

转载自blog.csdn.net/huyinda/article/details/103694276