nuptboyzhb / SuperSwipeRefreshLayout

A custom SwipeRefreshLayout to support the pull-to-refresh featrue.RecyclerView,ListView,GridView,NestedScrollView,ScrollView are supported.
Apache License 2.0
1.24k stars 350 forks source link

NestedScrollView监听不到 #25

Closed Reginer closed 8 years ago

Reginer commented 8 years ago

需要添加下面代码 else if (mTarget instanceof NestedScrollView){ NestedScrollView nestedScrollView = (NestedScrollView) mTarget; View view = (View) nestedScrollView.getChildAt(nestedScrollView.getChildCount() - 1); if (view != null) { int diff = (view.getBottom() - (nestedScrollView.getHeight() + nestedScrollView.getScrollY())); if (diff == 0) { return true; } } }

nuptboyzhb commented 8 years ago

已添加