SwipeRefreshLayout无法在Android版本22和向下

时间:2016-04-04 09:31:01

标签: android android-recyclerview swiperefreshlayout

大家好,我想问为什么我不能在RecycleView上创建SwipeRefresh。它仅适用于Marshmallow,它在另一个版本中销毁应用程序Screenshot of logcat Image below

1 个答案:

答案 0 :(得分:1)

来自你的logcat:

  • 您正在使用原生片段(android.app.Fragment
  • 关于Marshmallow片段稍微复杂一些并引入了getContext()方法,这在早期平台上并不存在。
  • 我不知道getContext()getActivity()返回不同内容的任何实际案例。

使用getActivity()代替getContext()

值得注意的是,这与SwipeRefreshLayout本身无关。您刚刚在OnRefreshListener回调中使用了错误的方法调用。