Constraint Layout 2.0 用法详解
Constraint Layout 2.0 带来了许多关于 Contraint Layout 的新特性,您可以通过在 build.gradle 中更改版本来升级使用。
implementation “androidx.constraintlayout:constraintlayout:2.0.1”
随着 2.0 版本的发布,我们专门在 github 上创建了 Constraint Layout 的代码库,但目前该代码库是只读状态,我们会逐步开放 pull request 的权限。
代码库 https://github.com/AndroidX/constraintlayout
Flow
Flow
https://developer.android.google.cn/reference/androidx/constraintlayout/helper/widget/Flow?hl=en
图片: 该动画展示了 Flow 创建多个链将布局元素充裕地填充一整行
图片: flow 三种模式 "none", "chain" 和 "align" 的可视化效果
<androidx.constraintlayout.helper.widget.Flow
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:flow_wrapMode="chain"
app:constraint_referenced_ids="card1, card2, card3"
/>
在 Constraint Layout 中使用 Flow 的用例
您可以对 wrapMode 指定三种模式:
none – 所有引用的视图以一条链的方式进行布局,如果内容溢出则溢出内容不可见;
chain – 当出现溢出时,溢出的内容会自动换行,以新的一条链的方式进行布局;
align – 同 chain 类似,但是不以行而是以列的方式进行布局。
官方文档 https://developer.android.google.cn/reference/androidx/constraintlayout/helper/widget/Flow
Layer
Layer https://developer.android.google.cn/reference/androidx/constraintlayout/helper/widget/Layer
图片: 使用 Layer 对多个视图同时进行变换操作
<androidx.constraintlayout.helper.widget.Layer
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:constraint_referenced_ids="card1, card2, card3"
/>
Motion Layout
动画: 集成 Motion Layout 示例运行后的界面截图
集成 Motion Layout 示例
https://github.com/android/views-widgets-samples/tree/master/ConstraintLayoutExamples/motionlayoutintegrations
使用 Kotlin 开发 Android 应用的进阶教程 03.2: 使用 MotionLayout 生成动画效果
https://developers.google.cn/codelabs/motion-layout/#1
可追溯的动画 - 由其它输入驱动的动画,例如工具栏在滚动时会出现的折叠效果
状态转换 - 由状态更改驱动的动画,例如用户进入某一界面后,随着该界面状态的转换而出现的不同动画效果
集成 Motion Layout 示例 android/views-widgets-samples https://github.com/android/views-widgets-samples/tree/master/ConstraintLayoutExamples/motionlayoutintegrations
推荐阅读