LuckyJayce/MVCHelper

一个小问题!

YLAndsoft opened this issue · 1 comments

CoolRefreshView嵌套NestedScrollView在嵌套RecyclerView就不能加载更多了吗?以下是布局代码:
<com.shizhefei.view.coolrefreshview.CoolRefreshView
android:id="@+id/home_seeMore_refresh_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="blocksDescendants">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
>
<android.support.v7.widget.RecyclerView
android:id="@+id/home_seeMore_recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false"/>
</android.support.v4.widget.NestedScrollView>
</com.shizhefei.view.coolrefreshview.CoolRefreshView>

下拉刷新没问题.是我属性设置不对还是哪里错误呢?