SwipeRefreshLayout 不适用于 android 版本 22 及以下版本
SwipeRefreshLayout not working on android version 22 and down
大家好,我想问一下为什么我不能在 RecycleView 上创建 SwipeRefresh。它仅在 Marshmallow 上运行良好,它会破坏另一个版本的应用程序 Screenshot of logcat
来自你的logcat:
- 您正在使用本机片段 (
android.app.Fragment
)
- Marshmallow 上的片段稍微复杂一些,并引入了
getContext()
方法,这在早期平台上是不存在的。
- 我不知道
getContext()
returns 与 getActivity()
不同的任何实际案例。
使用 getActivity()
代替 getContext()
。
值得注意的是,这与SwipeRefreshLayout
本身无关。您刚刚在 OnRefreshListener
回调中使用了错误的方法调用。
大家好,我想问一下为什么我不能在 RecycleView 上创建 SwipeRefresh。它仅在 Marshmallow 上运行良好,它会破坏另一个版本的应用程序 Screenshot of logcat
来自你的logcat:
- 您正在使用本机片段 (
android.app.Fragment
) - Marshmallow 上的片段稍微复杂一些,并引入了
getContext()
方法,这在早期平台上是不存在的。 - 我不知道
getContext()
returns 与getActivity()
不同的任何实际案例。
使用 getActivity()
代替 getContext()
。
值得注意的是,这与SwipeRefreshLayout
本身无关。您刚刚在 OnRefreshListener
回调中使用了错误的方法调用。