Platform
Android Studio
Google Play
Jetpack
Docs
Blog
Download
What's New
User Guide
Preview
Home
Platform
Android Studio
Download
What's New
User Guide
Preview
Google Play
Docs
Blog
Download a Preview
Install Alongside Stable
New Features
Release Updates
Updates archive
►
2024
2024
(79)
►
októbra
októbra
(8)
►
septembra
septembra
(8)
►
augusta
augusta
(9)
►
júla
júla
(6)
►
júna
júna
(7)
►
mája
mája
(9)
►
apríla
apríla
(9)
►
marca
marca
(6)
►
februára
februára
(8)
►
januára
januára
(9)
►
2023
2023
(76)
►
decembra
decembra
(4)
►
novembra
novembra
(9)
►
októbra
októbra
(7)
►
septembra
septembra
(8)
►
augusta
augusta
(3)
►
júla
júla
(4)
►
júna
júna
(6)
►
mája
mája
(10)
►
apríla
apríla
(4)
►
marca
marca
(7)
►
februára
februára
(9)
►
januára
januára
(5)
►
2022
2022
(59)
►
decembra
decembra
(3)
►
novembra
novembra
(5)
►
októbra
októbra
(8)
►
septembra
septembra
(4)
►
augusta
augusta
(4)
►
júla
júla
(2)
►
júna
júna
(7)
►
mája
mája
(6)
►
apríla
apríla
(5)
►
marca
marca
(6)
►
februára
februára
(5)
►
januára
januára
(4)
►
2021
2021
(54)
►
decembra
decembra
(3)
►
novembra
novembra
(2)
►
októbra
októbra
(6)
►
septembra
septembra
(4)
►
augusta
augusta
(5)
►
júla
júla
(8)
►
júna
júna
(4)
►
mája
mája
(5)
►
apríla
apríla
(1)
►
marca
marca
(7)
►
februára
februára
(4)
►
januára
januára
(5)
▼
2020
2020
(107)
►
decembra
decembra
(7)
►
novembra
novembra
(3)
►
októbra
októbra
(8)
►
septembra
septembra
(6)
►
augusta
augusta
(11)
▼
júla
júla
(14)
Android Studio 4.2 Canary 7 available
ConstraintLayout 2.0.0 rc1
Android Studio 4.2 Canary 6 available
Emulator 30.0.23 Canary
Android Studio 4.1 Beta 5 available
Android Studio 4.2 Canary 5 available
Emulator 30.0.22 Canary
Android Studio 4.1 Beta 4 available
Android Studio 4.0.1 available
Emulator 30.0.21 Canary
Android Studio 4.2 Canary 4 available
ConstraintLayout 2.0.0 beta 8
Android Studio 4.1 Beta 3 available
Emulator 30.0.20 Canary
►
júna
júna
(10)
►
mája
mája
(12)
►
apríla
apríla
(11)
►
marca
marca
(11)
►
februára
februára
(6)
►
januára
januára
(8)
►
2019
2019
(145)
►
decembra
decembra
(16)
►
novembra
novembra
(12)
►
októbra
októbra
(10)
►
septembra
septembra
(13)
►
augusta
augusta
(12)
►
júla
júla
(6)
►
júna
júna
(9)
►
mája
mája
(18)
►
apríla
apríla
(14)
►
marca
marca
(12)
►
februára
februára
(10)
►
januára
januára
(13)
►
2018
2018
(128)
►
decembra
decembra
(13)
►
novembra
novembra
(12)
►
októbra
októbra
(10)
►
septembra
septembra
(10)
►
augusta
augusta
(16)
►
júla
júla
(10)
►
júna
júna
(13)
►
mája
mája
(9)
►
apríla
apríla
(11)
►
marca
marca
(12)
►
februára
februára
(9)
►
januára
januára
(3)
►
2017
2017
(48)
►
decembra
decembra
(3)
►
novembra
novembra
(2)
►
októbra
októbra
(8)
►
septembra
septembra
(3)
►
augusta
augusta
(4)
►
júla
júla
(3)
►
júna
júna
(3)
►
mája
mája
(4)
►
apríla
apríla
(5)
►
marca
marca
(5)
►
februára
februára
(6)
►
januára
januára
(2)
►
2016
2016
(5)
►
decembra
decembra
(3)
►
novembra
novembra
(2)
Subscribe to updates
Príspevky
Atom
Príspevky
Android Developers
Android Studio
Preview
Release Updates
ConstraintLayout 2.0.0 rc1
streda 29. júla 2020
We are happy to announce the release candidate of ConstraintLayout 2.0. As this might be the final release before stable, we encourage people to try it and report any issues with their projects!
ConstraintLayout 2.0 adds a long list of capabilities to v1, from better
runtime API
to build up layouts to the introduction of new layout mechanisms such as
Flow
, or additional helpers like Layer.
Most notably though, this release introduces
MotionLayout
, an extremely powerful subclass of ConstraintLayout that you can use to easily create refined motion in your application.
In addition to the existing
Layout Editor
in Android Studio, allowing easy creation and edition of UI with ConstraintLayout, we recently added a new
Motion Editor
in Android Studio 4.0, enabling you to quickly take advantage of MotionLayout in your projects.
It’s available from the google maven repository:
dependencies {
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-rc1'
}
or if using the android.support packages:
dependencies {
implementation 'com.android.support.constraint:constraint-layout:2.0.0-rc1'
}
Documentation is available on
https://developer.android.com/reference/androidx/constraintlayout/widget/ConstraintLayout
and
https://developer.android.com/reference/androidx/constraintlayout/motion/widget/MotionLayout
Examples are available on
https://github.com/android/views-widgets-samples/tree/master/ConstraintLayoutExamples
Bugfixes
Here is the list of issues fixed in rc1. Notable fixes are:
Flow fixes
RecyclerView fixes (we recommend to update to recyclerview 1.2.0 alpha 5 or later)
MotionLayout TransitionListener fixes
MotionLayout memory leak fix
layout_constrainedWidth doesn't not work in Flow's children
157681357
NPE 's in Flow
162261507
layout_constraintDimensionRatio stays applied after a move to another ConstraintSet in MotionLayout
140263105
MotionLayout drag doesn't work after fling in RecyclerView
141319444
[ConstraintLayout 2.0.0-beta3] NPE when deriveConstraintsFrom is invalid.
143549617
apply layout_height="wrap_content" app:layout_constrainedHeight="true" this view height is full of constraint size when onCreat . And Then swich the view GONE/VISIBLE , the size change to the expected result
149427470
Flow height is bigger than it should be when its height is `wrap_content`
158285666
NullPointerException
161061411
Penultimate ImageView shifted when adding more rows
161063291
single element in the chain don't have bias applied
161741571
MotionLayout : adding views to Flow Helper
150940641
Resize in textview when I scroll in customized MotionLayout
155215198
MotionLayout firing callback endlessly with GlobalLayout
158068868
[Feature-Request] Addition of MotionScene.Transistion::getId.
160395303
Incorrect barrier and referenced view placement in 2.0.0-beta8
161156064
layout_width="wrap_content" on the parent does not work correctly when a child View has layout_constraintDimensionRatio and layout_constraintHeight_percent in 2.0.0-beta8
161826272
possible MotionLayout memory leak
161926837
Annotate ConstraintLayout constructor context param as not nullable
161926849
Android resource compilation failed after implementation 'constraint-layout:2.0.0-beta8'
162011618