CoordinatorLayout
最新更新 | 稳定版 | 候选版本 | Beta 版本 | Alpha 版本 |
---|---|---|---|---|
2023年10月4日 | 1.2.0 | - | - | 1.3.0-alpha02 |
声明依赖项
要添加对 CoordinatorLayout 的依赖项,您必须将 Google Maven 存储库添加到您的项目中。阅读Google 的 Maven 存储库以了解更多信息。
在应用或模块的 build.gradle
文件中添加所需构件的依赖项
Groovy
dependencies { implementation "androidx.coordinatorlayout:coordinatorlayout:1.2.0" }
Kotlin
dependencies { implementation("androidx.coordinatorlayout:coordinatorlayout:1.2.0") }
有关依赖项的更多信息,请参阅添加构建依赖项。
反馈
您的反馈有助于改进 Jetpack。如果您发现新的问题或有改进此库的想法,请告诉我们。在创建新问题之前,请查看此库中现有问题。您可以通过点击星形按钮为现有问题添加您的投票。
更多信息请参见问题跟踪文档。
1.3 版本
1.3.0-alpha02 版本
2023年10月4日
已发布 androidx.coordinatorlayout:coordinatorlayout:1.3.0-alpha02
。1.3.0-alpha02 版本包含这些提交。
- 版本号更新,与
1.3.0-alpha01
相比无变化。
1.3.0-alpha01 版本
2023 年 9 月 20 日
已发布 androidx.coordinatorlayout:coordinatorlayout:1.3.0-alpha01
。1.3.0-alpha01 版本包含这些提交。
新增功能
- 添加对分页向上、分页向下、移动到开头和移动到结尾按键事件的支持。(14719d3)
API 变更
- 在
CoordinatorLayout.java
中添加了可空性注解。(Ieb647,b/236474453)
错误修复
- 修复了
NestedScrollView
和CoordinatorLayout
中向上、向下、空格键和按键变体键盘操作的问题。(bdd72e6)
1.2 版本
1.2.0 版本
2022 年 1 月 12 日
已发布 androidx.coordinatorlayout:coordinatorlayout:1.2.0
。1.2.0 版本包含这些提交。
自 1.1.0 版本以来的重要更改
- 仅保留 CoordinatorLayout 规则中的运行时可见注解(9ec7cb)
1.2.0-rc01 版本
2021 年 12 月 15 日
已发布 androidx.coordinatorlayout:coordinatorlayout:1.2.0-rc01
。1.2.0-rc01 版本包含这些提交。
1.2.0-beta01 版本
2021 年 11 月 17 日
已发布 androidx.coordinatorlayout:coordinatorlayout:1.2.0-beta01
。1.2.0-beta01 版本包含这些提交。
API 变更
- API 已完成测试版。
1.2.0-alpha01 版本
2021 年 11 月 3 日
已发布 androidx.coordinatorlayout:coordinatorlayout:1.2.0-alpha01
。1.2.0-alpha01 版本包含这些提交。
错误修复
- 仅保留 CoordinatorLayout 规则中的运行时可见注解(9ec7cb)
1.1.0 版本
1.1.0 版本
2019 年 12 月 4 日
已发布 androidx.coordinatorlayout:coordinatorlayout:1.1.0
。1.1.0 版本包含这些提交。
自 1.0.0 版本以来的重要更改
- aosp/737190:CoordinatorLayout 现在实现
NestedScrollingParent3
,并且CoordinatorLayout.Behavior
实现了一个新的onNestedScroll
重载,以使Behaviors
能够向嵌套滚动的子项报告它们消耗了多少滚动距离(在dispatchNestedScroll()
/onNestedScroll()
传递期间)。先前存在的onNestedScroll(CoordinatorLayout, V, View, int, int, int, int, int)
已被弃用,取而代之的是新的onNestedScroll(CoordinatorLayout, V, View, int, int, int, int, int, int[])
,并且应相应地更新Behavior
实现。如果开发人员代码当前重写了CoordinatorLayout#onNestedScroll(View, int, int, int, int, int)
,则它很可能不再被调用,而应改为重写CoordinatorLayout#onNestedScroll(View, int, int, int, int, int, int[])
。 - 将 CoordinatorLayout 公开给辅助功能服务(aosp/1056175)
CoordinatorLayout.DefaultBehavior
注解已弃用。请改用CoordinatorLayout.AttachedBehavior
接口。
1.1.0-rc01 版本
2019 年 10 月 23 日
已发布 androidx.coordinatorlayout:coordinatorlayout:1.1.0-rc01
。1.1.0-rc01 版本包含这些提交。
新功能
- 将 CoordinatorLayout 公开给辅助功能服务(aosp/1056175)
1.1.0-beta01 版本
2019 年 6 月 5 日
已发布 androidx.coordinatorlayout:coordinatorlayout:1.1.0-beta01
。此版本中包含的提交可以在这里找到 此处。
错误修复
- 迁移到非已弃用的测试类(aosp/853955)
1.1.0-alpha01 版本
2018 年 12 月 3 日
API 变更
aosp/737190:CoordinatorLayout 现在实现
NestedScrollingParent3
,并且CoordinatorLayout.Behavior
实现了一个新的onNestedScroll
重载,以使Behaviors
能够向嵌套滚动的子项报告它们消耗了多少滚动距离(在dispatchNestedScroll()
/onNestedScroll()
传递期间)。先前存在的onNestedScroll(CoordinatorLayout, V, View, int, int, int, int, int)
已被弃用,取而代之的是新的onNestedScroll(CoordinatorLayout, V, View, int, int, int, int, int, int[])
,并且应相应地更新Behavior
实现。如果开发人员代码当前重写了
CoordinatorLayout#onNestedScroll(View, int, int, int, int, int)
,则它很可能不再被调用,而应改为重写CoordinatorLayout#onNestedScroll(View, int, int, int, int, int, int[])
。