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)
►
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)
Android Studio 4.0 Canary 7 available
AMD Hypervisor 1.3 to Stable
Emulator 29.3.2 Stable
Emulator 29.3.2 Canary
Android Studio 3.6 Release Candidate 1 available
ConstraintLayout 2.0.0 beta 4
Emulator 29.3.1 Canary
Emulator 29.3.0 Stable
Android Studio 4.0 Canary 6 available
Emulator 29.3.0 Canary
Emulator 29.2.12 Stable: Google Maps UI
Emulator 29.2.12 to Canary
Android Studio 3.5.3 available
Android Studio 4.0 Canary 5 available
Android Studio 3.6 Beta 5 available
Emulator 29.2.11 and AMD Hypervisor 1.2 to Stable
►
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 beta 4
pondelok 16. decembra 2019
We are happy to announce the release of ConstraintLayout 2.0 beta 4.
It’s available from the google maven repository:
dependencies {
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta4'
}
or if using the android.support packages:
dependencies {
implementation 'com.android.support.constraint:constraint-layout:2.0.0-beta4'
}
Documentation is available on
https://developer.android.com/reference/androidx/constraintlayout/widget/ConstraintLayout
Examples are available on
https://github.com/googlesamples/android-ConstraintLayoutExamples
MotionLayout
- new attributes in Transition:
layoutDuringTransition
: let you configure how MotionLayout should react to children's requestLayouts calls during a transition. Possible values are {
ignoreRequest
,
honorRequest
}
pathMotionArc
: the path taken by elements moving will use an arc. Possible values are {
startVertical
|
startHorizontal
|
flip
|
none
}
- A default transition is now possible to define, simply by omitting the start and end ConstraintSets. That default transition will be used if no other existing transition can be found to match the current start/end states.
Bugfixes
We fixed several issues in beta 4 -- upgrade from previous versions is highly encouraged.
Incorrect measuring dimensionRatio
117087368
[ConstraintLayout 2.0.0-beta2] Regression in scrolling RecyclerView into collapsing header
135430899
Regression regarding minHeight property
135828272
rotation issue
136131642
MotionLayout breaks if there are no Transitions defined
137310456
Incorrect rendering of views constrained towards a Barrier
143273709
Bug: ConstraintLayout barrier not shown on the IDE
143411144
[ConstraintLayout 2.0.0-beta3] Scrolling RecyclerView into collapsing header starts transition before reaching the top
143595002
Helpers aren't showing in Android Studio
144702154
ConstraintLayout - View Disappearing / Wrong Behaviour on a Transition
110314365
2.0.0 Alpha 4 not respecting margins.
130060979
When onTouchUp is set to decelerate the transition snaps to the end
132325328
Setting layout_constrainedHeight leads to incorrect view's width.
138733070
Static width & height ratio constraint results in wrong dimensions with 2.0.0-beta3
143967392
dimension percent with only one constraint collapse when = 1
144701789
Broken layout when the view is gone with spread_inside chain style
145768215
3 issues found in alpha5
131613288
[MotionLayout] onClick and onSwipe on the same view combination doesn't work
136600128
Disable Transition
138814831
NoSuchMethodException (setFabBackgroundTint, setFabTint) in MotionLayout
139535302
Disabling transition not working
143026544
Views get incorrectly wrapped in 2.0.0-beta3
143373429
[MotionLayout] Add API to temporarily disable touch event handling
144150451
MotionLayout onClick transition being override by swipe transition state
144943459
Flow Design View Broken in when using ConstraintLayout 2.0.0-beta3 with AS 4.0-alpha04
145511664