mirror of
https://github.com/element-hq/element-android
synced 2024-11-28 13:38:49 +03:00
Use @id
and not @+id
when referencing ids in xml
This commit is contained in:
parent
e106ff8de0
commit
c84642aa33
1 changed files with 3 additions and 3 deletions
|
@ -4,14 +4,14 @@
|
|||
|
||||
<!-- Click on main FAB: toggle -->
|
||||
<Transition
|
||||
motion:constraintSetEnd="@+id/constraint_set_fab_menu_open"
|
||||
motion:constraintSetStart="@+id/constraint_set_fab_menu_close"
|
||||
motion:constraintSetEnd="@id/constraint_set_fab_menu_open"
|
||||
motion:constraintSetStart="@id/constraint_set_fab_menu_close"
|
||||
motion:duration="300"
|
||||
motion:motionInterpolator="easeInOut">
|
||||
|
||||
<OnClick
|
||||
motion:clickAction="toggle"
|
||||
motion:targetId="@+id/createRoomButton" />
|
||||
motion:targetId="@id/createRoomButton" />
|
||||
|
||||
<KeyFrameSet>
|
||||
|
||||
|
|
Loading…
Reference in a new issue