cmconan

Results 1 issues of cmconan

感谢作者的代码! 提个修改建议: ParentRecyclerView中 ` public boolean canScrollVertically() { ChildRecyclerView childRecyclerView = findNestedScrollingChildRecyclerView(); return (canScrollVertically.get() || childRecyclerView == null || childRecyclerView.isScrollTop()); } ` 这里上滑时,没有判断子列表未滑动到顶部的情况,改成下面这种方式就OK了 `public boolean canScrollVertically() { ChildRecyclerView childRecyclerView =...