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)
►
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)
Emulator 28.1.0 Canary
ConstraintLayout 2.0.0 alpha 3
Emulator 28.0.22 Stable
Emulator 28.0.22 Canary
Android Studio 3.3 Release Candidate 3 available
Android Studio 3.4 Canary 9 available
Android Studio 3.4 Canary 8 available
Emulator 28.0.21 Canary
Emulator 28.0.20 Stable
Emulator 28.0.20 Canary
Emulator 28.0.19 Canary
Android Studio 3.3 Release Candidate 2 available
Android Studio 3.4 Canary 7 available
►
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 alpha 3
piatok 21. decembra 2018
We just released ConstraintLayout 2.0.0 alpha 3. It’s available from the google maven repository:
dependencies {
implementation 'com.android.support.constraint:constraint-layout:2.0.0-alpha3'
}
or if using the AndroidX packages:
dependencies {
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'
}
Changes
This release contains various bug fixes and performance improvements:
Barrier fixes
Chains optimizations
Fixed glitches in MotionLayout touch handling (end state could be triggered incorrectly)
We also added several new features to MotionLayout:
New XML format for specifying ConstraintSets, allowing finer-grained overrides
KeyTimeCycle
: a keyframe that allows you to define a cycle driven by time instead of by the transition (e.g. a pulsating color defined this way will keep pulsating even if the overall transition is stopped)
KeyPosition now supports percentWidth/percentHeight
KeyTrigger
: a keyframe that can fire callbacks depending on the current animation progress
Supports custom interpolators (referencing a Framework XML interpolator)
Touch interactions can now drive multiple state transitions seamlessly one after another
OnClick
: now supports multiple OnClick per MotionScene.
Important:
motion:mode
has been renamed to
motion:clickAction
.
Added ImageFilterButton, an equivalent of ImageFilterView but extending ImageButton
Added new callbacks in TransitionListener
New XML Format for ConstraintSet
An important addition in alpha 3 is a new way of defining ConstraintSet in the MotionScene file. Previously,
<Constraint>
elements had to contain all attributes defined on a view (as we replace everything when you apply them). Now, you can instead only add the specific areas you are modifying, as sub-elements of
<Constraint>
:
<Layout>
: layout-related (constraints) attributes
<PropertySet>
: visibility, alpha and progress
<Transform>
: scale, translation, rotation, pivot, elevation
<Motion>
: easing, arc motion, etc.
For example, let's say that you wanted to only modify the rotation of a widget in a ConstraintSet. Previously you would have needed to repeat all the attributes to preserve the position of the widget:
<Constraint
android:id="@+id/button"
android:layout_width="64dp"
android:layout_height="64dp"
android:layout_marginTop="100dp"
motion:layout_constraintStart_toStartOf="parent"
motion:layout_constraintEnd_toEndOf="parent"
motion:layout_constraintTop_toTopOf="parent"
android:rotation="45"
/>
With alpha 3 you can instead only specify the Transform area, the rest will be unaffected:
<Constraint android:id="@+id/button">
<Transform
motion:rotation="45" />
</Constraint>