SwipeRefreshLayout

实现滑动刷新 UI 模式。
最新更新 稳定版 候选版 Beta 版 Alpha 版
2020 年 7 月 22 日 1.1.0 - - 1.2.0-alpha01

声明依赖项

要添加对 SwipeRefreshLayout 的依赖项,您必须将 Google Maven 存储库添加到您的项目中。阅读Google 的 Maven 存储库以了解更多信息。

在应用或模块的build.gradle文件中添加所需构件的依赖项

Groovy

dependencies {
    implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
}

Kotlin

dependencies {
    implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
}

有关依赖项的更多信息,请参阅添加构建依赖项

反馈

您的反馈有助于改进 Jetpack。如果您发现新的问题或有改进此库的想法,请告诉我们。在创建新问题之前,请查看此库中现有问题。您可以通过点击星号按钮为现有问题投票。

创建新问题

有关更多信息,请参阅问题跟踪器文档

1.2.0 版

1.2.0-alpha01 版

2020 年 7 月 22 日

androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01 已发布。1.2.0-alpha01 版包含这些提交。

错误修复

  • requestDisallowInterceptTouchEvent(boolean) 现在像任何其他 ViewGroup 一样遵守请求。虽然强烈不建议这样做,但可以使用 setLegacyRequestDisallowInterceptTouchEventEnabled 禁用新行为。(I968dab/141855018

1.1.0 版

1.1.0 版

2020 年 6 月 24 日

androidx.swiperefreshlayout:swiperefreshlayout:1.1.0 已发布。1.1.0 版包含这些提交。

自 1.0.0 版以来的主要更改

  • SwipeRefreshLayout 现在实现 NestedScrollingChild3NestedScrollingParent3

1.1.0-rc01 版

2020 年 4 月 15 日

版本 androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-rc01 已发布,自 1.1.0-beta01 版本以来没有任何更改。版本 1.1.0-rc01 包含这些提交。

版本 1.1.0-beta01

2020年3月4日

版本 androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-beta01 已发布,自 1.1.0-alpha03 版本以来没有任何更改。版本 1.1.0-beta01 包含这些提交。

版本 1.1.0-alpha03

2019年10月9日

版本 androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha03 已发布。版本 1.1.0-alpha03 包含这些提交。

新功能

  • 我们新增了一个样式属性 R.styleable.SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 用于设置进度指示器的背景颜色。(aosp/931124

API 变更

  • requestDisallowInterceptTouchEvent(boolean) 现在始终向上传播到其父级。虽然强烈不建议这样做,但可以使用 setLegacyRequestDisallowInterceptTouchEventEnabled 禁用新行为。(aosp/1108540

错误修复

  • 修复了嵌套滚动中的问题,其中 SwipeRefreshLayout 具有可滚动的父级(例如 ViewPager2)和可滚动的子级。(b/138314213

版本 1.1.0-alpha02

2019年7月2日

版本 androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02 已发布。此版本中包含的提交可以在这里找到 此处

错误修复

  • 实现了 SwipeRefreshLayout 刷新状态的保存和恢复。
  • 修复了 SwipeRefreshLayout 嵌入 RecyclerView 时出现的可用性错误。

版本 1.1.0-alpha01

2018年12月3日

API 变更

  • aosp/737631SwipeRefreshLayout 现在实现了 NestedScrollingChild3NestedScrollingParent3,使嵌套滚动 3 个父级和子级能够通过 SwipeRefreshLayout 传递已消耗的嵌套滚动距离信息。如果开发者代码当前覆盖了 SwipeRefreshLayout.onNestedScroll(View, int, int, int, int, int),则可能不再调用它,应改为覆盖 SwipeRefreshLayout.onNestedScroll(View, int, int, int, int, int, int[])。同样,SwipeRefreshLayout.dispatchNestedScroll(int, int, int, int, int[], int) 也可能不再被调用,应改为覆盖 SwipeRefreshLayout.dispatchNestedScroll(int, int, int, int, int[], int, int[])