Chanven / CommonPullToRefresh

Android widget with pull to refresh for all the views,and support loadMore for ListView , RecyclerView, GridView and SwipeRefreshLayout.
Apache License 2.0
1.07k stars 303 forks source link

如何支持scrollview #39

Open MrR0990 opened 8 years ago

MrR0990 commented 8 years ago

如果代码执行到这里就会抛出异常,请问是怎么兼容scrollview的 if (null == mLoadMoreHandler) { if (mContentView instanceof GridView) { mLoadMoreHandler = new GridViewHandler(); } else if (mContentView instanceof AbsListView) { mLoadMoreHandler = new ListViewHandler(); } else if (mContentView instanceof RecyclerView) { mLoadMoreHandler = new RecyclerViewHandler(); } } if (null == mLoadMoreHandler) { throw new IllegalStateException("unSupported contentView !"); }

Chanven commented 8 years ago

scrollview不支持loadmore目前