最近遇到了一个问题,在 SwipeRefreshLayout 中,有时候下拉,圆球不会下来,等松开手指的时候,球会突然闪一下,不明所以。想到这个应该是滑动相关的问题,而且跟嵌套滑动似乎很有关联,我们看,public class SwipeRefreshLayout extends ViewGroup implements NestedScrollingParent,NestedScrollingChild,可以看出 SwipeRefreshLayout 即实现了 NestedScrollingParent 也实现了 NestedScrollingChild,那先从这个角度着手,看看 NestedScroll 是个什么玩意儿。