alferd
Results
1
comments of
alferd
禁用掉ChildRecyclerView的startNestedScroll(int axes, int type)就可以了,之前想得复杂了还改了好久,直接在type=TYPE_NON_TOUCH的时候,也就是fling状态中的就直接返回false `override fun startNestedScroll(axes: Int, type: Int): Boolean { if (type == ViewCompat.TYPE_NON_TOUCH) { return false } return super.startNestedScroll(axes, type) }`