我正在尝试在页脚中实现pullToRefresh
和quickreturn
。有一个类似的问题,但this SO thread
我面临的第一个问题是,当我尝试从片段中获取listview
时:
mListView = (QuickReturnListView) getListView();
抛出强制转换异常:
com.handmark.pulltorefresh.library.PullToRefreshListView$InternalListViewSDK9
cannot be cast to com.example.app.QuickReturnListView
我尝试将QuickReturnListView
中的方法添加到PullToRefreshListView
但是会产生新的异常,我认为问题是两个库都在使用onscroll
侦听器。